From 4888191014c24d5954685814e06c9ff0ee38739f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ingo=20Kl=C3=B6cker?= Date: Tue, 4 Jan 2022 14:55:30 +0100 Subject: [PATCH] cpp: Mark ExportNoUID flag as obsolete * lang/cpp/src/context.h (enum Context::ExportMode): Mark value ExportNoUID as obsolete -- GnuPG-bug-id: 5757 --- lang/cpp/src/context.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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, };