Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/owncloud/client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/mirall/networklocation.cpp')
-rw-r--r--src/mirall/networklocation.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mirall/networklocation.cpp b/src/mirall/networklocation.cpp
index 6cb330e63..b98565bd0 100644
--- a/src/mirall/networklocation.cpp
+++ b/src/mirall/networklocation.cpp
@@ -49,7 +49,7 @@ NetworkLocation NetworkLocation::currentLocation()
QByteArray gwIp;
while (ip.canReadLine()) {
QByteArray line = ip.readLine();
- if (line.startsWith("default")) {
+ if ( line.startsWith("default") ) { // krazy:exclude=strings
QList<QByteArray> parts = line.split(' ');
gwIp = parts[2];
break;