diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-03-20 14:31:05 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-03-20 14:31:05 +0000 |
commit | 074690aa549db034b9d1599b9fa38dfd577db868 (patch) | |
tree | 5e5565364aea7181ddde3c3c0a0a4ad99b3eb4de /contrib/package/uhttpd/src/uhttpd-utils.c | |
parent | 35e6a59ef269829e4838aa748dfd93c5441083c2 (diff) |
uhttpd: rename struct uh_path_info to path_info, drop wdir member
Diffstat (limited to 'contrib/package/uhttpd/src/uhttpd-utils.c')
-rw-r--r-- | contrib/package/uhttpd/src/uhttpd-utils.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/package/uhttpd/src/uhttpd-utils.c b/contrib/package/uhttpd/src/uhttpd-utils.c index c3ff35f28..12d68ff86 100644 --- a/contrib/package/uhttpd/src/uhttpd-utils.c +++ b/contrib/package/uhttpd/src/uhttpd-utils.c @@ -352,11 +352,11 @@ int uh_path_normalize(char *buf, int blen, const char *src, int slen) } -struct uh_path_info * uh_path_lookup(struct client *cl, const char *url) +struct path_info * uh_path_lookup(struct client *cl, const char *url) { static char path_phys[PATH_MAX]; static char path_info[PATH_MAX]; - static struct uh_path_info p; + static struct path_info p; char buffer[UH_LIMIT_MSGHEAD]; char *docroot = cl->server->conf->docroot; |