diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-04-24 11:07:41 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-04-24 11:07:41 +0000 |
commit | 3df8df720a35269b0aa69d3cc4fd7288b5445aa0 (patch) | |
tree | a913b6f17e9ca741f5383958e07c79d01d2c01a3 /package/uhttpd/src/uhttpd.c | |
parent | e9dcaa6a1394c41d34ab2db49eb8e7df52347130 (diff) | |
download | mtk-20170518-3df8df720a35269b0aa69d3cc4fd7288b5445aa0.zip mtk-20170518-3df8df720a35269b0aa69d3cc4fd7288b5445aa0.tar.gz mtk-20170518-3df8df720a35269b0aa69d3cc4fd7288b5445aa0.tar.bz2 |
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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/package/uhttpd/src/uhttpd.c b/package/uhttpd/src/uhttpd.c index 9de77c8..152e0b4 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; |