View | Details | Raw Unified | Return to bug 27364
Collapse All | Expand All

(-)a/apt/cmdline/apt-get.cc (-2 / +2 lines)
Lines 1995-2001 bool DoInstall(CommandLine &CmdL) Link Here
1995
	    if (Hit == true)
1995
	    if (Hit == true)
1996
	       continue;
1996
	       continue;
1997
#endif
1997
#endif
1998
	    return _error->Error(_("Couldn't find package %s"),S);
1998
	    return _error->Error(_("Couldn't find package %s"),OrigS);
1999
	 }
1999
	 }
2000
2000
2001
	 // Regexs must always be confirmed
2001
	 // Regexs must always be confirmed
Lines 2034-2040 bool DoInstall(CommandLine &CmdL) Link Here
2034
	 regfree(&Pattern);
2034
	 regfree(&Pattern);
2035
	 
2035
	 
2036
	 if (Hit == false)
2036
	 if (Hit == false)
2037
	    return _error->Error(_("Couldn't find package %s"),S);
2037
	    return _error->Error(_("Couldn't find package %s"),OrigS);
2038
      }
2038
      }
2039
      else
2039
      else
2040
      {
2040
      {

Return to bug 27364