diff options
author | Ingo Klöcker <[email protected]> | 2022-01-04 13:55:30 +0000 |
---|---|---|
committer | Ingo Klöcker <[email protected]> | 2022-01-04 13:55:30 +0000 |
commit | 4888191014c24d5954685814e06c9ff0ee38739f (patch) | |
tree | 12295179de41d19d478e8896448d9063e343e3c6 | |
parent | core: Add new option --secret-subkey to help texts. (diff) | |
download | gpgme-4888191014c24d5954685814e06c9ff0ee38739f.tar.gz gpgme-4888191014c24d5954685814e06c9ff0ee38739f.zip |
cpp: Mark ExportNoUID flag as obsolete
* lang/cpp/src/context.h (enum Context::ExportMode): Mark value
ExportNoUID as obsolete
--
GnuPG-bug-id: 5757
-rw-r--r-- | lang/cpp/src/context.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lang/cpp/src/context.h b/lang/cpp/src/context.h index bcb2017a..430c16e9 100644 --- a/lang/cpp/src/context.h +++ b/lang/cpp/src/context.h @@ -189,7 +189,7 @@ public: ExportSecret = 16, ExportRaw = 32, ExportPKCS12 = 64, - ExportNoUID = 128, + ExportNoUID = 128, // obsolete; has no effect ExportSSH = 256, }; |