diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-03-08 16:20:51 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-03-08 16:20:51 +0000 |
commit | 702021e099e072ae750cd99cb224368c0a4887af (patch) | |
tree | 5d809c7f4a5d92becbdfe5513efd6ef272e1838d /lib | |
parent | e94c46c00c22c6308aeeea06fc424a4b20a22b56 (diff) |
don't compare signed/unsigned
Diffstat (limited to 'lib')
-rw-r--r-- | lib/http_ntlm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/http_ntlm.c b/lib/http_ntlm.c index 7948e3749..e1ede7696 100644 --- a/lib/http_ntlm.c +++ b/lib/http_ntlm.c @@ -212,7 +212,7 @@ static void mkhash(char *password, static const unsigned char magic[] = { 0x4B, 0x47, 0x53, 0x21, 0x40, 0x23, 0x24, 0x25 }; - int i; + unsigned int i; size_t len = strlen(password); /* make it fit at least 14 bytes */ |