From a5c2119e51f2d81be80fac08771f8ea50761661c Mon Sep 17 00:00:00 2001 From: Matt Colyer Date: Wed, 30 Jul 2008 23:05:38 -0700 Subject: Fixed a return that was supposed to be there (thanks to Martin who pointed it out). --- src/ifuse.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ifuse.c b/src/ifuse.c index 1cfa48d..93467b3 100644 --- a/src/ifuse.c +++ b/src/ifuse.c @@ -31,6 +31,7 @@ static int ifuse_getattr(const char *path, struct stat *stbuf) { file = afc_get_file_info(afc, path); if (!file){ res = -ENOENT; + return res; } stbuf->st_mode = file->type | 0444; -- cgit v1.1-32-gdbae