]> git.saurik.com Git - apt.git/commitdiff
Add conflicting Signed-By values to error message
authorJulian Andres Klode <jak@debian.org>
Sun, 15 May 2016 17:16:54 +0000 (19:16 +0200)
committerJulian Andres Klode <jak@debian.org>
Sun, 15 May 2016 17:18:15 +0000 (19:18 +0200)
This hopefully makes debugging things easier.

apt-pkg/deb/debmetaindex.cc

index aad7df735e188d23ccdbfb8494b972ac322c5f5b..71aee3f728c001f577f766f33ebfd17f8494044c 100644 (file)
@@ -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;
 }
                                                                        /*}}}*/