diff options
author | George Hazan <george.hazan@gmail.com> | 2015-07-23 08:28:34 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2015-07-23 08:28:34 +0000 |
commit | 371c87af33810c934034161947c143ccbf6aa01b (patch) | |
tree | 59e6cca98e1019ab519306bf9cd6ab75624be908 /plugins/MirOTR/Libgcrypt/cipher/cipher.c | |
parent | 0c47fa983161b4db0b7bd4105cebae0ddae707c8 (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/cipher.c')
-rw-r--r-- | plugins/MirOTR/Libgcrypt/cipher/cipher.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/MirOTR/Libgcrypt/cipher/cipher.c b/plugins/MirOTR/Libgcrypt/cipher/cipher.c index 8c5a0b4ed8..6a42bfaa30 100644 --- a/plugins/MirOTR/Libgcrypt/cipher/cipher.c +++ b/plugins/MirOTR/Libgcrypt/cipher/cipher.c @@ -124,12 +124,12 @@ spec_from_name (const char *name) for (idx=0; (spec = cipher_list[idx]); idx++) { - if (!stricmp (name, spec->name)) + if (!_stricmp (name, spec->name)) return spec; if (spec->aliases) { for (aliases = spec->aliases; *aliases; aliases++) - if (!stricmp (name, *aliases)) + if (!_stricmp (name, *aliases)) return spec; } } @@ -152,7 +152,7 @@ spec_from_oid (const char *oid) if (oid_specs) { for (j = 0; oid_specs[j].oid; j++) - if (!stricmp (oid, oid_specs[j].oid)) + if (!_stricmp (oid, oid_specs[j].oid)) return spec; } } @@ -180,7 +180,7 @@ search_oid (const char *oid, gcry_cipher_oid_spec_t *oid_spec) if (spec && spec->oids) { for (i = 0; spec->oids[i].oid; i++) - if (!stricmp (oid, spec->oids[i].oid)) + if (!_stricmp (oid, spec->oids[i].oid)) { if (oid_spec) *oid_spec = spec->oids[i]; |