diff options
author | George Hazan <george.hazan@gmail.com> | 2012-06-28 15:05:53 +0000 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2012-06-28 15:05:53 +0000 |
commit | 5ed738eb52c269eb2ff89ee743fdf345efea16d9 (patch) | |
tree | de0afdf65d539d351f02a56d09abda0c39f56581 /plugins/MirOTR/libgcrypt-1.4.6/cipher/pubkey.c | |
parent | a1b54aadf426b4ce2ce3c900a889f53f1eec6bce (diff) |
compilation fixes
git-svn-id: http://svn.miranda-ng.org/main/trunk@669 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'plugins/MirOTR/libgcrypt-1.4.6/cipher/pubkey.c')
-rw-r--r-- | plugins/MirOTR/libgcrypt-1.4.6/cipher/pubkey.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/MirOTR/libgcrypt-1.4.6/cipher/pubkey.c b/plugins/MirOTR/libgcrypt-1.4.6/cipher/pubkey.c index 08abcbfdec..f163ea1696 100644 --- a/plugins/MirOTR/libgcrypt-1.4.6/cipher/pubkey.c +++ b/plugins/MirOTR/libgcrypt-1.4.6/cipher/pubkey.c @@ -231,10 +231,10 @@ gcry_pk_lookup_func_name (void *spec, void *data) gcry_pk_spec_t *pubkey = (gcry_pk_spec_t *) spec; char *name = (char *) data; const char **aliases = pubkey->aliases; - int ret = stricmp (name, pubkey->name); + int ret = _stricmp (name, pubkey->name); while (ret && *aliases) - ret = stricmp (name, *aliases++); + ret = _stricmp (name, *aliases++); return ! ret; } @@ -2712,7 +2712,7 @@ _gcry_pk_get_elements (int algo, char **enc, char **sig) if (enc) { - enc_cp = strdup (spec->elements_enc); + enc_cp = _strdup (spec->elements_enc); if (! enc_cp) { err = gpg_err_code_from_errno (errno); @@ -2722,7 +2722,7 @@ _gcry_pk_get_elements (int algo, char **enc, char **sig) if (sig) { - sig_cp = strdup (spec->elements_sig); + sig_cp = _strdup (spec->elements_sig); if (! sig_cp) { err = gpg_err_code_from_errno (errno); |