+-------------------------------------------------------------------
+Tue Apr 11 09:30:14 CEST 2006 - visnov@suse.cz
+
+- ask user if a file exists but does not have a checksum (#162797)
+- rev 3044
+
-------------------------------------------------------------------
Mon Apr 10 22:39:34 CEST 2006 - jsrain@suse.de
CheckSum checksum = _prodImpl->_descr_files_checksums[key];
if (checksum.empty())
{
+ callback::SendReport<KeyRingReport> report;
+
+ if ( report->askUserToAcceptUnsignedFile(path) )
+ {
+ MIL << path << " user accepted unsigned file " << endl;
+ return;
+ }
+
ZYPP_THROW (Exception( "Error, Missing checksum for " + path.asString() ) );
}
else