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/mac.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/mac.c')
-rw-r--r-- | plugins/MirOTR/Libgcrypt/cipher/mac.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/MirOTR/Libgcrypt/cipher/mac.c b/plugins/MirOTR/Libgcrypt/cipher/mac.c index d87ac13761..5514ddc3a8 100644 --- a/plugins/MirOTR/Libgcrypt/cipher/mac.c +++ b/plugins/MirOTR/Libgcrypt/cipher/mac.c @@ -129,7 +129,7 @@ spec_from_name (const char *name) int idx; for (idx = 0; (spec = mac_list[idx]); idx++) - if (!stricmp (name, spec->name)) + if (!_stricmp (name, spec->name)) return spec; return NULL; |