aboutsummaryrefslogtreecommitdiffstats
path: root/package/uhttpd/src/uhttpd.c
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2010-04-24 11:07:41 +0000
committerJo-Philipp Wich <jow@openwrt.org>2010-04-24 11:07:41 +0000
commit3df8df720a35269b0aa69d3cc4fd7288b5445aa0 (patch)
treea913b6f17e9ca741f5383958e07c79d01d2c01a3 /package/uhttpd/src/uhttpd.c
parente9dcaa6a1394c41d34ab2db49eb8e7df52347130 (diff)
downloadupstream-3df8df720a35269b0aa69d3cc4fd7288b5445aa0.tar.gz
upstream-3df8df720a35269b0aa69d3cc4fd7288b5445aa0.tar.bz2
upstream-3df8df720a35269b0aa69d3cc4fd7288b5445aa0.zip
uhttpd: - ignore authentication realms that refer to user accounts with no password set yet (X-Wrt compatibility) - fix off-by-one in CGI header parsing, fixes cgi programs that emit bad header lines (AsteriskGUI compatibility) - bump version
SVN-Revision: 21121
Diffstat (limited to 'package/uhttpd/src/uhttpd.c')
-rw-r--r--package/uhttpd/src/uhttpd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/package/uhttpd/src/uhttpd.c b/package/uhttpd/src/uhttpd.c
index 9de77c814d..152e0b452a 100644
--- a/package/uhttpd/src/uhttpd.c
+++ b/package/uhttpd/src/uhttpd.c
@@ -71,8 +71,8 @@ static void uh_config_parse(const char *path)
if( !uh_auth_add(line, user, pass) )
{
fprintf(stderr,
- "Can not manage more than %i basic auth realms, "
- "will skip the rest\n", UH_LIMIT_AUTHREALMS
+ "Notice: No password set for user %s, ignoring "
+ "authentication on %s\n", user, line
);
break;