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 897
Collapse All | Expand All

(-)tdebase.orig/kioslave/sftp/kio_sftp.cpp (-5 / +1 lines)
Lines 481-491 Link Here
481
    if( port > 0 )
481
    if( port > 0 )
482
        mPort = port;
482
        mPort = port;
483
    else {
483
    else {
484
        struct servent *pse;
484
        mPort = -1;
485
        if( (pse = getservbyname("ssh", "tcp") ) == NULL )
486
            mPort = 22;
487
        else
488
            mPort = ntohs(pse->s_port);
489
    }
485
    }
490
486
491
    mUsername = user;
487
    mUsername = user;

Return to bug 897