diff options
author | Yang Tse <yangsita@gmail.com> | 2010-11-08 04:03:11 +0100 |
---|---|---|
committer | Yang Tse <yangsita@gmail.com> | 2010-11-08 04:03:11 +0100 |
commit | dc3e7df1c99c2ee9dae06453adbb94fe9584bf75 (patch) | |
tree | 6578bc549399f347ce0b196154cd4028a29cdf6a /lib/http_digest.c | |
parent | 1171bc5c8aff58b337f180a443cd39a30150bfc6 (diff) | |
download | curl-dc3e7df1c99c2ee9dae06453adbb94fe9584bf75.tar.gz |
fix compiler warning
Diffstat (limited to 'lib/http_digest.c')
-rw-r--r-- | lib/http_digest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http_digest.c b/lib/http_digest.c index be40fc7fe..45d8aeba8 100644 --- a/lib/http_digest.c +++ b/lib/http_digest.c @@ -158,7 +158,7 @@ CURLdigest Curl_input_digest(struct connectdata *conn, /* clear off any former leftovers and init to defaults */ Curl_digest_cleanup_one(d); - while(1) { + for(;;) { char value[MAX_VALUE_LENGTH]; char content[MAX_CONTENT_LENGTH]; |