aboutsummaryrefslogtreecommitdiffstats
path: root/gpg-interface.h
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2025-11-03 07:27:57 -0800
committerJunio C Hamano <gitster@pobox.com>2025-11-03 07:27:57 -0800
commit41a35c3e52b18bfc36a89cfe99f78cc74dacf6b5 (patch)
treef6a06d0448dde5dd035af4ec3d162b330d0ace1d /gpg-interface.h
parentMerge branch 'rz/t0450-bisect-doc-update' into next (diff)
parentgpg-interface: mark a string for translation (diff)
downloadgit-41a35c3e52b18bfc36a89cfe99f78cc74dacf6b5.tar.gz
git-41a35c3e52b18bfc36a89cfe99f78cc74dacf6b5.zip
Merge branch 'cc/fast-import-export-i18n-cleanup' into next
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,