X-Git-Url: http://git.annexia.org/?p=libguestfs.git;a=blobdiff_plain;f=fuse%2Fdircache.c;h=157035e0b5583367448e1a4f451383fad11de195;hp=1028926084f1e47307680dc9b78b8be865e7755b;hb=bf0280bf589573c11529999a73e9ec642dea9d61;hpb=9a8889e4d0c532b9f77af3a9cc7aae06adebfb83 diff --git a/fuse/dircache.c b/fuse/dircache.c index 1028926..157035e 100644 --- a/fuse/dircache.c +++ b/fuse/dircache.c @@ -37,17 +37,9 @@ #include "hash.h" #include "hash-pjw.h" +#include "guestmount.h" #include "dircache.h" -extern int verbose; -extern int dir_cache_timeout; - -static inline char * -bad_cast (char const *s) -{ - return (char *) s; -} - /* Note on attribute caching: FUSE can cache filesystem attributes for * short periods of time (configurable via -o attr_timeout). It * doesn't cache xattrs, and in any case FUSE caching doesn't solve @@ -146,7 +138,7 @@ init_dir_caches (void) rlc_ht = hash_initialize (1024, NULL, gen_hash, gen_compare, rlc_free); if (!lsc_ht || !xac_ht || !rlc_ht) { fprintf (stderr, "guestmount: could not initialize dir cache hashtables\n"); - exit (1); + exit (EXIT_FAILURE); } }