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/md.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/md.c')
-rw-r--r-- | plugins/MirOTR/Libgcrypt/cipher/md.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/MirOTR/Libgcrypt/cipher/md.c b/plugins/MirOTR/Libgcrypt/cipher/md.c index 008ef5b230..20b652e03b 100644 --- a/plugins/MirOTR/Libgcrypt/cipher/md.c +++ b/plugins/MirOTR/Libgcrypt/cipher/md.c @@ -153,7 +153,7 @@ spec_from_name (const char *name) for (idx=0; (spec = digest_list[idx]); idx++) { - if (!stricmp (name, spec->name)) + if (!_stricmp (name, spec->name)) return spec; } @@ -175,7 +175,7 @@ spec_from_oid (const char *oid) if (oid_specs) { for (j = 0; oid_specs[j].oidstring; j++) - if (!stricmp (oid, oid_specs[j].oidstring)) + if (!_stricmp (oid, oid_specs[j].oidstring)) return spec; } } @@ -198,7 +198,7 @@ search_oid (const char *oid, gcry_md_oid_spec_t *oid_spec) if (spec && spec->oids) { for (i = 0; spec->oids[i].oidstring; i++) - if (!stricmp (oid, spec->oids[i].oidstring)) + if (!_stricmp (oid, spec->oids[i].oidstring)) { if (oid_spec) *oid_spec = spec->oids[i]; @@ -1141,7 +1141,7 @@ md_stop_debug( gcry_md_hd_t md ) #ifdef HAVE_U64_TYPEDEF { /* a kludge to pull in the __muldi3 for Solaris */ - volatile u32 a = (u32)(ulong)md; + volatile u32 a = (u32)md; volatile u64 b = 42; volatile u64 c; c = a * b; |