diff options
Diffstat (limited to 'g10')
-rw-r--r-- | g10/ChangeLog | 4 | ||||
-rw-r--r-- | g10/misc.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/g10/ChangeLog b/g10/ChangeLog index ddc9ba0e0..0af97c45e 100644 --- a/g10/ChangeLog +++ b/g10/ChangeLog @@ -1,3 +1,7 @@ +2010-12-02 Werner Koch <[email protected]> + + * misc.c (openpgp_cipher_algo_name): Use gnupg_cipher_algo_name. + 2010-11-23 Werner Koch <[email protected]> * Makefile.am (gpg2_LDFLAGS, gpgv2_LDFLAGS): Add extra_bin_ldflags. diff --git a/g10/misc.c b/g10/misc.c index b3b73ed67..1725258c5 100644 --- a/g10/misc.c +++ b/g10/misc.c @@ -409,7 +409,7 @@ openpgp_cipher_test_algo( int algo ) const char * openpgp_cipher_algo_name (int algo) { - return gcry_cipher_algo_name (map_cipher_openpgp_to_gcry (algo)); + return gnupg_cipher_algo_name (map_cipher_openpgp_to_gcry (algo)); } int |