Преглед изворни кода

Add conflicting Signed-By values to error message

This hopefully makes debugging things easier.
Julian Andres Klode пре 10 година
родитељ
комит
a9fd02dec5
1 измењених фајлова са 1 додато и 1 уклоњено
  1. 1 1
      apt-pkg/deb/debmetaindex.cc

+ 1 - 1
apt-pkg/deb/debmetaindex.cc

@@ -692,7 +692,7 @@ bool debReleaseIndex::SetSignedBy(std::string const &pSignedBy)
       }
    }
    else if (SignedBy != pSignedBy)
-      return _error->Error(_("Conflicting values set for option %s regarding source %s %s"), "Signed-By", URI.c_str(), Dist.c_str());
+      return _error->Error(_("Conflicting values set for option %s regarding source %s %s: %s != %s"), "Signed-By", URI.c_str(), Dist.c_str(), SignedBy.c_str(), pSignedBy.c_str());
    return true;
 }
 									/*}}}*/