diff options
author | Werner Koch <[email protected]> | 2015-01-22 11:06:11 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2015-01-22 11:06:11 +0000 |
commit | 11142e0ad7bc9a9e3c3dccf958d8dbd3312cb993 (patch) | |
tree | 0dd1a333374407a96a3258b4cb46a5e634e683ae /g10/misc.c | |
parent | gpg: Remove an unused variable. (diff) | |
download | gnupg-11142e0ad7bc9a9e3c3dccf958d8dbd3312cb993.tar.gz gnupg-11142e0ad7bc9a9e3c3dccf958d8dbd3312cb993.zip |
gpg: Replace remaining old error code macros by GPG_ERR_.
* g10/gpg.h (g10_errstr): Remove macro and change all occurrences by
gpg_strerror.
(G10ERR_): Remove all macros and change all occurrences by their
GPG_ERR_ counterparts.
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to '')
-rw-r--r-- | g10/misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/g10/misc.c b/g10/misc.c index 6a45c6920..a2b5075ed 100644 --- a/g10/misc.c +++ b/g10/misc.c @@ -1186,7 +1186,7 @@ check_compress_algo(int algo) #ifdef HAVE_BZIP2 case 3: return 0; #endif - default: return G10ERR_COMPR_ALGO; + default: return GPG_ERR_COMPR_ALGO; } } |