summaryrefslogtreecommitdiffstats
path: root/src/network/socket/qlocalserver_unix.cpp
diff options
context:
space:
mode:
authorMarkus Goetz <Markus.Goetz@nokia.com>2010-10-28 08:24:48 (GMT)
committerMarkus Goetz <Markus.Goetz@nokia.com>2010-10-28 08:24:48 (GMT)
commit7537554040827dbaae327d27c77319e6b7e7c618 (patch)
treecda6f46bfd19fc1c7f9e851b3ff9be6b3f17db02 /src/network/socket/qlocalserver_unix.cpp
parentf964de82d506a379b9d80b18025491aa3521a2c9 (diff)
downloadQt-7537554040827dbaae327d27c77319e6b7e7c618.zip
Qt-7537554040827dbaae327d27c77319e6b7e7c618.tar.gz
Qt-7537554040827dbaae327d27c77319e6b7e7c618.tar.bz2
Network code: Fix code comment spellchecking errors.
Me no speak americano. Reviewed-by: Peter Hartmann
Diffstat (limited to 'src/network/socket/qlocalserver_unix.cpp')
-rw-r--r--src/network/socket/qlocalserver_unix.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/network/socket/qlocalserver_unix.cpp b/src/network/socket/qlocalserver_unix.cpp
index 560f5f6..c218d89 100644
--- a/src/network/socket/qlocalserver_unix.cpp
+++ b/src/network/socket/qlocalserver_unix.cpp
@@ -119,7 +119,7 @@ bool QLocalServerPrivate::listen(const QString &requestedServerName)
// subsequent call to accept will not block in any case
//
// This change can be removed once more generic fix to select thread
- // syncronization problem is implemented.
+ // synchronization problem is implemented.
int flags = fcntl(listenSocket, F_GETFL, 0);
if (-1 == flags
|| -1 == (fcntl(listenSocket, F_SETFL, flags | O_NONBLOCK))) {