From: Duncan Mac-Vicar P Date: Tue, 25 Apr 2006 14:58:30 +0000 (+0000) Subject: if unknown key, pass empty strings insteads for description X-Git-Tag: BASE-SuSE-SLE-10-SP2-Branch~936 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=1f525717afd16c97dd0e0d3676e22199f1b6e138;p=platform%2Fupstream%2Flibzypp.git if unknown key, pass empty strings insteads for description --- diff --git a/zypp/KeyRing.cc b/zypp/KeyRing.cc index 6b6779d..7589b48 100644 --- a/zypp/KeyRing.cc +++ b/zypp/KeyRing.cc @@ -309,7 +309,7 @@ namespace zypp else { // unknown key... - if ( report->askUserToAcceptUnknownKey( filedesc, id, "Unknown Key", "No fingerprint" ) ) + if ( report->askUserToAcceptUnknownKey( filedesc, id, "", "" ) ) { MIL << "User wants to accept unknown key " << id << std::endl; return true;