]> err.no Git - varnish/commitdiff
Make the statfs(3)/statvfs(3) dictomy actually work.
authorphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Tue, 5 Dec 2006 09:41:16 +0000 (09:41 +0000)
committerphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Tue, 5 Dec 2006 09:41:16 +0000 (09:41 +0000)
git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@1228 d4fa192b-c00b-0410-8231-f00ffab90ce4

varnish-cache/bin/varnishd/storage_file.c

index fc959f7b379a09be439c5c5099ece66be355f713..3209f7da098823c60923fc249576e8410e4c2bc0 100644 (file)
@@ -39,7 +39,6 @@
 
 #ifdef HAVE_SYS_STATVFS_H
 #include <sys/statvfs.h>
-#define statfs statvfs
 #endif
 
 #ifdef HAVE_SYS_VFS_H
@@ -122,11 +121,20 @@ smf_calcsize(struct smf_sc *sc, const char *size, int newfile)
        char suff[2];
        int i, expl;
        off_t o;
-       struct statfs fsst;
        struct stat st;
 
+       AN(sc != NULL);
        AZ(fstat(sc->fd, &st));
+
+#ifdef HAVE_SYS_STATVFS_H
+       struct statfs fsst;
+       AZ(fstatfs(sc->fd, &fsst));
+#endif
+
+#ifdef HAVE_SYS_VFS_H
+       struct statfs fsst;
        AZ(fstatfs(sc->fd, &fsst));
+#endif
 
        /* We use units of the larger of filesystem blocksize and pagesize */
        bs = sc->pagesize;