summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2011-10-20 20:39:28 +0200
committerDan McGee <dan@archlinux.org>2011-11-21 04:40:19 +0100
commit2141b7112d237221280781bed2b2bb6efadc963e (patch)
tree47e086e4e4ed877efecd10f5796b1a6672712682 /src
parent2f96067fe71e796e9da378620ad16a9f94a7b8ac (diff)
downloadpacman-2141b7112d237221280781bed2b2bb6efadc963e.tar.gz
pacman-2141b7112d237221280781bed2b2bb6efadc963e.tar.xz
add key algo to import msg
Signed-off-by: Florian Pritz <bluewind@xinu.at> Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'src')
-rw-r--r--src/pacman/callback.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/pacman/callback.c b/src/pacman/callback.c
index 4b2ad2aa..2d989ba9 100644
--- a/src/pacman/callback.c
+++ b/src/pacman/callback.c
@@ -350,11 +350,13 @@ void cb_question(alpm_question_t event, void *data1, void *data2,
const char *revoked = "";
time_t time = (time_t)key->created;
strftime(created, 12, "%Y-%m-%d", localtime(&time));
+
if (key->revoked) {
revoked = " (revoked)";
}
- *response = yesno(_(":: Import PGP key %d/%s, \"%s\", created: %s%s?"),
- key->length, key->fingerprint, key->uid, created, revoked);
+
+ *response = yesno(_(":: Import PGP key %d%c/%s, \"%s\", created: %s%s?"),
+ key->length, key->pubkey_algo, key->fingerprint, key->uid, created, revoked);
}
break;
}