diff options
author | Andre Heinecke <[email protected]> | 2019-11-04 10:17:27 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2019-11-04 10:17:27 +0000 |
commit | 08933c183a4c299eb4696092d6d229f607fce985 (patch) | |
tree | c76a5fb1de8e67990caf804d6f8feb144fe95718 | |
parent | doc: Note the need for a base tag. (diff) | |
download | gpgme-08933c183a4c299eb4696092d6d229f607fce985.tar.gz gpgme-08933c183a4c299eb4696092d6d229f607fce985.zip |
cpp: Fix dupe_ok state for single uid
* lang/cpp/src/gpgsignkeyeditinteractor.cpp (makeTable):
Add transition from command to dupe_ok
-rw-r--r-- | lang/cpp/src/gpgsignkeyeditinteractor.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lang/cpp/src/gpgsignkeyeditinteractor.cpp b/lang/cpp/src/gpgsignkeyeditinteractor.cpp index 80c5f122..bf21cbc1 100644 --- a/lang/cpp/src/gpgsignkeyeditinteractor.cpp +++ b/lang/cpp/src/gpgsignkeyeditinteractor.cpp @@ -188,6 +188,7 @@ static GpgSignKeyEditInteractor_Private::TransitionMap makeTable() addEntry(COMMAND, GET_BOOL, "keyedit.sign_all.okay", UIDS_ANSWER_SIGN_ALL); addEntry(COMMAND, GET_BOOL, "sign_uid.okay", CONFIRM); addEntry(COMMAND, GET_BOOL, "sign_uid.local_promote_okay", CONFIRM2); + addEntry(COMMAND, GET_BOOL, "sign_uid.dupe_okay", DUPE_OK); addEntry(UIDS_ANSWER_SIGN_ALL, GET_BOOL, "sign_uid.okay", CONFIRM); addEntry(UIDS_ANSWER_SIGN_ALL, GET_LINE, "sign_uid.expire", SET_EXPIRE); addEntry(UIDS_ANSWER_SIGN_ALL, GET_LINE, "sign_uid.class", SET_CHECK_LEVEL); |