diff options
author | Stef Walter <stef@memberwebs.com> | 2007-06-19 21:00:06 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2007-06-19 21:00:06 +0000 |
commit | ccf2cfde57c93683115e993e64f36916e43df46a (patch) | |
tree | 9bd4a06c9fd55f95233574a9589bd183b1c28cf7 /apache1x | |
parent | b86f99a62464dadb9a5ea3bec99f22e8bc3e5d53 (diff) |
Fix dumb missing variable
Diffstat (limited to 'apache1x')
-rw-r--r-- | apache1x/mod_httpauth.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apache1x/mod_httpauth.c b/apache1x/mod_httpauth.c index 064b3d1..fffaf9d 100644 --- a/apache1x/mod_httpauth.c +++ b/apache1x/mod_httpauth.c @@ -802,6 +802,7 @@ static int httpauth_access(request_rec *r) { httpauth_context_t* ctx; const char *user = r->connection->user; + const char* authtype; int m = r->method_number; int method_restricted = 0; register int x; |