diff options
author | Stef Walter <stef@memberwebs.com> | 2005-02-11 00:52:01 +0000 |
---|---|---|
committer | Stef Walter <stef@memberwebs.com> | 2005-02-11 00:52:01 +0000 |
commit | 13d00aacc2e8b2326ab3f33ee6332e47ca8aadb1 (patch) | |
tree | 99ab0833ffcc8a6254e67d0c23e38bae96614c00 /daemon/httpauthd.c | |
parent | fea22a1c49416b3ef1036cd7ca3fc55ff7779499 (diff) |
Fix uninitialized values
Diffstat (limited to 'daemon/httpauthd.c')
-rw-r--r-- | daemon/httpauthd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/daemon/httpauthd.c b/daemon/httpauthd.c index 0524fdd..b26eb60 100644 --- a/daemon/httpauthd.c +++ b/daemon/httpauthd.c @@ -629,7 +629,7 @@ static int httpauth_read(ha_request_t* rq, int ifd) int i, r; int more = 1; - ASSERT(r); + ASSERT(rq); ASSERT(ifd != -1); /* Clean up the request header */ |