diff options
author | Stef Walter <stef@memberwebs.com> | 2004-06-09 17:19:45 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2004-06-09 17:19:45 +0000 |
commit | 5995e2afd8f026de8f5eb9a392b59542a98bf7e5 (patch) | |
tree | 1bd4e661665c49fa62ea7813b793a18718d4d47b /apache1x/mod_httpauth.c | |
parent | 88bdaea8c3ef28680a83ee6c82e77e97c6116fb4 (diff) |
- Added peer name logging
- Reformatted connection logging
Diffstat (limited to 'apache1x/mod_httpauth.c')
-rw-r--r-- | apache1x/mod_httpauth.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apache1x/mod_httpauth.c b/apache1x/mod_httpauth.c index 43dfa1b..91e6288 100644 --- a/apache1x/mod_httpauth.c +++ b/apache1x/mod_httpauth.c @@ -471,7 +471,7 @@ int connect_socket(httpauth_context_t* ctx, request_rec* r) goto finally; } - if(connect(ctx->socket, SANY_ADDR(sany), SANY_LEN(sany)) != 0) + if(connect(ctx->socket, &SANY_ADDR(sany), SANY_LEN(sany)) != 0) { ap_log_rerror(APLOG_MARK, APLOG_CRIT, r, "httpauth: Can't connect to httpauthd"); |