summaryrefslogtreecommitdiffstats
path: root/httpdigest.c
diff options
context:
space:
mode:
authorJames Yonan <james@openvpn.net>2010-05-11 19:47:03 +0000
committerJames Yonan <james@openvpn.net>2010-05-11 19:47:03 +0000
commit484e9d36d09e3494a6d964c588c353f650a61b5f (patch)
treecb8bdaf0a8f53e6810c8ac581f6d17db4e0ac4a5 /httpdigest.c
parentb27dc04c366c031f4bb349e3235a2b0eb76c821a (diff)
downloadopenvpn-484e9d36d09e3494a6d964c588c353f650a61b5f.tar.gz
openvpn-484e9d36d09e3494a6d964c588c353f650a61b5f.tar.xz
openvpn-484e9d36d09e3494a6d964c588c353f650a61b5f.zip
Minor fixes to recent HTTP proxy changes:
* use strcasecmp instead of stricmp * define HASH and HASHHEX as unsigned char to avoid compiler warnings git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@5629 e7ae566f-a301-0410-adde-c780ea21d3b5
Diffstat (limited to 'httpdigest.c')
-rw-r--r--httpdigest.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/httpdigest.c b/httpdigest.c
index abe5bea..ef77e12 100644
--- a/httpdigest.c
+++ b/httpdigest.c
@@ -75,7 +75,7 @@ DigestCalcHA1(
MD5_Update(&Md5Ctx, ":", 1);
MD5_Update(&Md5Ctx, pszPassword, strlen(pszPassword));
MD5_Final(HA1, &Md5Ctx);
- if (pszAlg && stricmp(pszAlg, "md5-sess") == 0)
+ if (pszAlg && strcasecmp(pszAlg, "md5-sess") == 0)
{
MD5_Init(&Md5Ctx);
MD5_Update(&Md5Ctx, HA1, HASHLEN);
@@ -112,7 +112,7 @@ DigestCalcResponse(
MD5_Update(&Md5Ctx, pszMethod, strlen(pszMethod));
MD5_Update(&Md5Ctx, ":", 1);
MD5_Update(&Md5Ctx, pszDigestUri, strlen(pszDigestUri));
- if (stricmp(pszQop, "auth-int") == 0)
+ if (strcasecmp(pszQop, "auth-int") == 0)
{
MD5_Update(&Md5Ctx, ":", 1);
MD5_Update(&Md5Ctx, HEntity, HASHHEXLEN);