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

(-)apt-0.5.15cnc6.orig/apt-pkg/contrib/cmndline.cc (+1 lines)
Lines 333-338 Link Here
333
bool CommandLine::DispatchArg(Dispatch *Map,bool NoMatch)
333
bool CommandLine::DispatchArg(Dispatch *Map,bool NoMatch)
334
{
334
{
335
   int I;
335
   int I;
336
   if (FileSize() == 0) return false;
336
   for (I = 0; Map[I].Match != 0; I++)
337
   for (I = 0; Map[I].Match != 0; I++)
337
   {
338
   {
338
      if (strcmp(FileList[0],Map[I].Match) == 0)
339
      if (strcmp(FileList[0],Map[I].Match) == 0)

Return to bug 5401