summaryrefslogtreecommitdiff
path: root/gpg-interface.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2025-11-06 15:17:01 -0800
committerJunio C Hamano <gitster@pobox.com>2025-11-06 15:17:01 -0800
commite569dced68a486b38b14cdd2e3e0b34d21752a18 (patch)
tree8d6186e4278c3af315b66d06930f225117a6c86f /gpg-interface.h
parent5db9d35a28f4fca5d13692f589a3bfcd5cd896cb (diff)
parent93cef5bda5f5d6f36b8442dd6bd871289bc48f10 (diff)
downloadgit-e569dced68a486b38b14cdd2e3e0b34d21752a18.tar.xz
Merge branch 'cc/fast-import-export-i18n-cleanup'
Messages from fast-import/export are now marked for i18n. * cc/fast-import-export-i18n-cleanup: gpg-interface: mark a string for translation fast-import: mark strings for translation fast-export: mark strings for translation gpg-interface: use left shift to define GPG_VERIFY_* gpg-interface: simplify ssh fingerprint parsing
Diffstat (limited to 'gpg-interface.h')
-rw-r--r--gpg-interface.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/gpg-interface.h b/gpg-interface.h
index 50487aa148..ead1ed6967 100644
--- a/gpg-interface.h
+++ b/gpg-interface.h
@@ -3,9 +3,9 @@
struct strbuf;
-#define GPG_VERIFY_VERBOSE 1
-#define GPG_VERIFY_RAW 2
-#define GPG_VERIFY_OMIT_STATUS 4
+#define GPG_VERIFY_VERBOSE (1<<0)
+#define GPG_VERIFY_RAW (1<<1)
+#define GPG_VERIFY_OMIT_STATUS (1<<2)
enum signature_trust_level {
TRUST_UNDEFINED,