diff options
author | Dan McGee <dan@archlinux.org> | 2011-09-20 23:49:50 +0200 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-09-22 17:35:52 +0200 |
commit | 0a4a5cea97f75d5d38e9cb33d5f47f0c36c0dffb (patch) | |
tree | a9e86d18bf96f1d87c1d66fe043d3da7bcdb7c9b /lib/libalpm/alpm.h | |
parent | 3e4749fe3ec3f14e4107363a85b953b4a0a747f7 (diff) | |
download | pacman-0a4a5cea97f75d5d38e9cb33d5f47f0c36c0dffb.tar.gz pacman-0a4a5cea97f75d5d38e9cb33d5f47f0c36c0dffb.tar.xz |
Add new import key question enum value and stub frontend function
This is for eventual use by the PGP key import code. Breaking this into
a separate commit now makes the following patches a bit easier to
understand.
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/alpm.h')
-rw-r--r-- | lib/libalpm/alpm.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h index c864fb9f..3b6b279c 100644 --- a/lib/libalpm/alpm.h +++ b/lib/libalpm/alpm.h @@ -352,6 +352,7 @@ typedef enum _alpm_question_t { ALPM_QUESTION_LOCAL_NEWER = (1 << 4), ALPM_QUESTION_REMOVE_PKGS = (1 << 5), ALPM_QUESTION_SELECT_PROVIDER = (1 << 6), + ALPM_QUESTION_IMPORT_KEY = (1 << 7) } alpm_question_t; /** Question callback */ |