diff options
author | Andre Heinecke <[email protected]> | 2016-05-18 13:27:32 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2016-05-18 13:27:32 +0000 |
commit | f0dca0ab92ed18d80e30d7d39db1596b4112794f (patch) | |
tree | 233533ddc1f7bc29b5695fe6eb374312370c0d37 /src/op-support.c | |
parent | tests: New maintenance helper run-encrypt. (diff) | |
download | gpgme-f0dca0ab92ed18d80e30d7d39db1596b4112794f.tar.gz gpgme-f0dca0ab92ed18d80e30d7d39db1596b4112794f.zip |
Fix typo in compatibility declaration
* src/op-support.c (GPG_ERR_SUBKEYS_EXP_REV): Change to
GPG_ERR_SUBKEYS_EXP_OR_REV.
--
This fixes the build with libgpg-error < 1.23
Diffstat (limited to 'src/op-support.c')
-rw-r--r-- | src/op-support.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/op-support.c b/src/op-support.c index d51d643b..4e388a41 100644 --- a/src/op-support.c +++ b/src/op-support.c @@ -34,7 +34,7 @@ #include "debug.h" #if GPG_ERROR_VERSION_NUMBER < 0x011700 /* 1.23 */ -# define GPG_ERR_SUBKEYS_EXP_REV 217 +# define GPG_ERR_SUBKEYS_EXP_OR_REV 217 #endif |