summaryrefslogtreecommitdiff
path: root/plugins/MirOTR/Libgcrypt/cipher/pubkey-util.c
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2015-07-23 08:28:34 +0000
committerGeorge Hazan <george.hazan@gmail.com>2015-07-23 08:28:34 +0000
commit371c87af33810c934034161947c143ccbf6aa01b (patch)
tree59e6cca98e1019ab519306bf9cd6ab75624be908 /plugins/MirOTR/Libgcrypt/cipher/pubkey-util.c
parent0c47fa983161b4db0b7bd4105cebae0ddae707c8 (diff)
various warning & compilation fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@14648 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirOTR/Libgcrypt/cipher/pubkey-util.c')
-rw-r--r--plugins/MirOTR/Libgcrypt/cipher/pubkey-util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/MirOTR/Libgcrypt/cipher/pubkey-util.c b/plugins/MirOTR/Libgcrypt/cipher/pubkey-util.c
index 616b4990fe..71312828bf 100644
--- a/plugins/MirOTR/Libgcrypt/cipher/pubkey-util.c
+++ b/plugins/MirOTR/Libgcrypt/cipher/pubkey-util.c
@@ -391,7 +391,7 @@ _gcry_pk_util_preparse_sigval (gcry_sexp_t s_sig, const char **algo_names,
}
for (i=0; algo_names[i]; i++)
- if (!stricmp (name, algo_names[i]))
+ if (!_stricmp (name, algo_names[i]))
break;
if (!algo_names[i])
{
@@ -562,7 +562,7 @@ _gcry_pk_util_preparse_encval (gcry_sexp_t sexp, const char **algo_names,
parsed_flags |= PUBKEY_FLAG_LEGACYRESULT;
for (i=0; algo_names[i]; i++)
- if (!stricmp (name, algo_names[i]))
+ if (!_stricmp (name, algo_names[i]))
break;
if (!algo_names[i])
{