]> git.saurik.com Git - apt.git/blobdiff - apt-private/private-download.cc
Show unauthenticated warning for source packages as well
[apt.git] / apt-private / private-download.cc
index a095f0c67a63285859a6cfa997a00ff3fb462e46..be7d23c318163c5382bb4c6434133873a818afd6 100644 (file)
@@ -28,6 +28,11 @@ bool CheckAuth(pkgAcquire& Fetcher, bool const PromptUser)
    if (UntrustedList == "")
       return true;
 
+   return AuthPrompt(UntrustedList, PromptUser);
+}
+
+bool AuthPrompt(std::string UntrustedList, bool const PromptUser)
+{
    ShowList(c2out,_("WARNING: The following packages cannot be authenticated!"),UntrustedList,"");
 
    if (_config->FindB("APT::Get::AllowUnauthenticated",false) == true)