From aad0502b9516ed092f03e19899d71d7350cfe2fa Mon Sep 17 00:00:00 2001 From: Juan RP Date: Tue, 15 Oct 2013 09:58:51 +0200 Subject: [PATCH] xbps_repo_key_import: also print repourl in state cb. --- lib/repo_keys.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/repo_keys.c b/lib/repo_keys.c index 85a5336c..b8bb3ce8 100644 --- a/lib/repo_keys.c +++ b/lib/repo_keys.c @@ -93,8 +93,8 @@ xbps_repo_key_import(struct xbps_repo *repo) xbps_dictionary_get_cstring_nocopy(repo->meta, "signature-by", &signedby); import = xbps_set_cb_state(repo->xhp, XBPS_STATE_REPO_KEY_IMPORT, 0, (const char *)fp, - "This repository is RSA signed by \"%s\"", - signedby); + "`%s' repository is RSA signed by \"%s\"", + repo->uri, signedby); free(fp); if (import <= 0) { rv = EAGAIN;