fix index file handling
authorFelix Fietkau <nbd@openwrt.org>
Thu, 3 Jan 2013 00:08:06 +0000 (01:08 +0100)
committerFelix Fietkau <nbd@openwrt.org>
Thu, 3 Jan 2013 00:08:06 +0000 (01:08 +0100)
file.c

diff --git a/file.c b/file.c
index 9268577..679755d 100644 (file)
--- a/file.c
+++ b/file.c
@@ -233,8 +233,10 @@ uh_path_lookup(struct client *cl, const char *url)
                        continue;
 
                strcpy(pathptr, idx->name);
-               if (!stat(path_phys, &s) && (s.st_mode & S_IFREG))
+               if (!stat(path_phys, &s) && (s.st_mode & S_IFREG)) {
+                       memcpy(&p.stat, &s, sizeof(p.stat));
                        break;
+               }
 
                *pathptr = 0;
        }