diff options
author | Connor Behan <connor.behan@gmail.com> | 2013-04-18 10:40:06 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2013-04-24 05:47:19 +0200 |
commit | b8c84479712f021735466d9882bf8ebbf1c558e4 (patch) | |
tree | 8283a6cd070f48b49a2e4a54541aa7b11ff90e81 /lib/libalpm | |
parent | ee3b70c4a9f3564a6ec4bf9823189e217ab66dc9 (diff) | |
download | pacman-b8c84479712f021735466d9882bf8ebbf1c558e4.tar.gz pacman-b8c84479712f021735466d9882bf8ebbf1c558e4.tar.xz |
Remove ALPM_QUESTION_LOCAL_NEWER
Remove a question that hasn't been used since the 3.0 days. To prevent
us from having an ugly enum of questions that is missing a bitmask, this
changes the API of the hidden --ask option.
Signed-off-by: Connor Behan <connor.behan@gmail.com>
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'lib/libalpm')
-rw-r--r-- | lib/libalpm/alpm.h | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib/libalpm/alpm.h b/lib/libalpm/alpm.h index ccbdd1c6..2277a69c 100644 --- a/lib/libalpm/alpm.h +++ b/lib/libalpm/alpm.h @@ -405,10 +405,9 @@ typedef enum _alpm_question_t { ALPM_QUESTION_REPLACE_PKG = (1 << 1), ALPM_QUESTION_CONFLICT_PKG = (1 << 2), ALPM_QUESTION_CORRUPTED_PKG = (1 << 3), - 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_REMOVE_PKGS = (1 << 4), + ALPM_QUESTION_SELECT_PROVIDER = (1 << 5), + ALPM_QUESTION_IMPORT_KEY = (1 << 6) } alpm_question_t; /** Question callback */ |