]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
Robert Collins: storeDirGetBlkSize needs to include <sys/vfs.h>
authorwessels <>
Fri, 5 Jan 2001 04:55:42 +0000 (04:55 +0000)
committerwessels <>
Fri, 5 Jan 2001 04:55:42 +0000 (04:55 +0000)
for Windows.

src/store_dir.cc

index 129742552ec9ded2105aa14ed5c3385f02746d12..2cea6b3087d71d30c5e09ece763aa9ed38c5d05a 100644 (file)
@@ -1,6 +1,6 @@
 
 /*
- * $Id: store_dir.cc,v 1.120 2001/01/04 19:11:49 wessels Exp $
+ * $Id: store_dir.cc,v 1.121 2001/01/04 21:55:42 wessels Exp $
  *
  * DEBUG: section 47    Store Directory Routines
  * AUTHOR: Duane Wessels
 #if HAVE_SYS_STATVFS_H
 #include <sys/statvfs.h>
 #endif
+/* Windows uses sys/vfs.h */
+#if HAVE_SYS_VFS_H
+#include <sys/vfs.h>
+#endif
 #endif
 
 static int storeDirValidSwapDirSize(int, ssize_t);