Changeset 2091
- Timestamp:
- 02/26/2008 04:21:44 PM (7 months ago)
- Files:
-
- 1 modified
-
branches/lighttpd-1.4.x/src/http_auth.c (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
branches/lighttpd-1.4.x/src/http_auth.c
r1989 r2091 30 30 #include "http_auth.h" 31 31 #include "http_auth_digest.h" 32 #include "inet_ntop_cache.h" 32 33 #include "stream.h" 33 34 … … 863 864 /* password doesn't match */ 864 865 if (http_auth_basic_password_compare(srv, p, req, username, realm->value, password, pw)) { 865 log_error_write(srv, __FILE__, __LINE__, "sbb ", "password doesn't match for", con->uri.path, username);866 log_error_write(srv, __FILE__, __LINE__, "sbbss", "password doesn't match for ", con->uri.path, username, ", IP:", inet_ntop_cache_get_ip(srv, &(con->dst_addr))); 866 867 867 868 buffer_free(username); … … 1131 1132 1132 1133 log_error_write(srv, __FILE__, __LINE__, "sss", 1133 "digest: auth failed for ", username, "wrong password");1134 "digest: auth failed for ", username, ": wrong password, IP:", inet_ntop_cache_get_ip(srv, &(con->dst_addr))); 1134 1135 1135 1136 buffer_free(b);

