summaryrefslogtreecommitdiffstats
path: root/src/pacman/callback.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pacman/callback.c')
-rw-r--r--src/pacman/callback.c13
1 files changed, 2 insertions, 11 deletions
diff --git a/src/pacman/callback.c b/src/pacman/callback.c
index fc4ce875..25528100 100644
--- a/src/pacman/callback.c
+++ b/src/pacman/callback.c
@@ -456,17 +456,8 @@ void cb_question(alpm_question_t *question)
case ALPM_QUESTION_IMPORT_KEY:
{
alpm_question_import_key_t *q = &question->import_key;
- char created[12];
- time_t time = (time_t)q->key->created;
- strftime(created, 12, "%Y-%m-%d", localtime(&time));
-
- if(q->key->revoked) {
- q->import = yesno(_("Import PGP key %u%c/%s, \"%s\", created: %s (revoked)?"),
- q->key->length, q->key->pubkey_algo, q->key->fingerprint, q->key->uid, created);
- } else {
- q->import = yesno(_("Import PGP key %u%c/%s, \"%s\", created: %s?"),
- q->key->length, q->key->pubkey_algo, q->key->fingerprint, q->key->uid, created);
- }
+ q->import = yesno(_("Import PGP key %s, \"%s\"?"),
+ q->key->fingerprint, q->key->uid);
}
break;
}