By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 2109
Collapse All | Expand All

(-)tdeioslave/ftp/ftp.cc.orig (+8 lines)
Lines 757-762 Link Here
757
    return false;
757
    return false;
758
  }
758
  }
759
759
760
  if ( cmd.find( '\r' ) != -1 || cmd.find( '\n' ) != -1)
761
  {
762
    kdWarning(7102) << "Invalid command received (contains CR or LF): "
763
                    << cmd.data() << endl;
764
    error( ERR_UNSUPPORTED_ACTION, m_host );
765
    return false;
766
  }
767
760
  // Don't print out the password...
768
  // Don't print out the password...
761
  bool isPassCmd = (cmd.left(4).lower() == "pass");
769
  bool isPassCmd = (cmd.left(4).lower() == "pass");
762
  if ( !isPassCmd )
770
  if ( !isPassCmd )

Return to bug 2109