diff options
Diffstat (limited to 'src/network')
-rw-r--r-- | src/network/qdns.cpp | 2 | ||||
-rw-r--r-- | src/network/qftp.cpp | 2 | ||||
-rw-r--r-- | src/network/qsocketdevice_unix.cpp | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/src/network/qdns.cpp b/src/network/qdns.cpp index 616b3dfd3..9f370a8ee 100644 --- a/src/network/qdns.cpp +++ b/src/network/qdns.cpp @@ -1476,7 +1476,7 @@ TQPtrList<TQDnsRR> * TQDnsDomain::cached( const TQDns * r ) d->rrs->next(); } } - // if we found a positive result, return tquickly + // if we found a positive result, return quickly if ( answer && l->count() ) { #if defined(TQDNS_DEBUG) tqDebug( "found %d records for %s", diff --git a/src/network/qftp.cpp b/src/network/qftp.cpp index 222c2a594..31f07de30 100644 --- a/src/network/qftp.cpp +++ b/src/network/qftp.cpp @@ -1502,7 +1502,7 @@ int TQFtp::login( const TQString &user, const TQString &password ) */ int TQFtp::close() { - return addCommand( new TQFtpCommand( Close, TQStringList("TQUIT\r\n") ) ); + return addCommand( new TQFtpCommand( Close, TQStringList("QUIT\r\n") ) ); } /*! diff --git a/src/network/qsocketdevice_unix.cpp b/src/network/qsocketdevice_unix.cpp index 827cc349b..565ab7d3b 100644 --- a/src/network/qsocketdevice_unix.cpp +++ b/src/network/qsocketdevice_unix.cpp @@ -625,10 +625,10 @@ int TQSocketDevice::accept() case ETIMEDOUT: // in all these cases, an error happened during connection // setup. we're not interested in what happened, so we - // just treat it like the client-closed-tquickly case. + // just treat it like the client-closed-quickly case. case EPERM: // firewalling wouldn't let us accept. we treat it like - // the client-closed-tquickly case. + // the client-closed-quickly case. case EAGAIN: #if EAGAIN != EWOULDBLOCK case EWOULDBLOCK: |