Browse Source

Add conflicting Signed-By values to error message

This hopefully makes debugging things easier.
Julian Andres Klode 10 years ago
parent
commit
a9fd02dec5
1 changed files with 1 additions and 1 deletions
  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)
    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;
    return true;
 }
 }
 									/*}}}*/
 									/*}}}*/