projects
/
oweals
/
uhttpd.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
48e1a4d
)
fix path lookup
author
Felix Fietkau
<nbd@openwrt.org>
Sun, 13 Jan 2013 10:17:35 +0000
(11:17 +0100)
committer
Felix Fietkau
<nbd@openwrt.org>
Sun, 13 Jan 2013 10:17:35 +0000
(11:17 +0100)
file.c
patch
|
blob
|
history
diff --git
a/file.c
b/file.c
index b2e6adef75917df12965335a28ab750c0428fe91..1238ebdbb8468b496268f22795096b1720b47aa1 100644
(file)
--- a/
file.c
+++ b/
file.c
@@
-179,6
+179,10
@@
uh_path_lookup(struct client *cl, const char *url)
if (!exists)
continue;
+ /* test current path */
+ if (stat(path_phys, &p.stat))
+ continue;
+
snprintf(path_info, sizeof(path_info), "%s", uh_buf + i);
break;
}
@@
-189,10
+193,6
@@
uh_path_lookup(struct client *cl, const char *url)
path_phys[docroot_len] != '/'))
return NULL;
- /* test current path */
- if (stat(path_phys, &p.stat))
- return NULL;
-
/* is a regular file */
if (p.stat.st_mode & S_IFREG) {
p.root = docroot;