aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-04-07 13:48:56 +0200
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2017-04-07 13:49:50 +0200
commit1441b02f05a9671b9ad8bcba551ebc004af821a2 (patch)
tree6c6355e9964bb2db7376a15567a56f4cc12de436
parentdcdbc102c1d1827fd10959148d52f9e2e96bf3cd (diff)
downloadnx-libs-1441b02f05a9671b9ad8bcba551ebc004af821a2.tar.gz
nx-libs-1441b02f05a9671b9ad8bcba551ebc004af821a2.tar.bz2
nx-libs-1441b02f05a9671b9ad8bcba551ebc004af821a2.zip
nxcomp/Loop.cpp: Fix server/client mode info cerr printing in PrintProcessInfo().
-rw-r--r--nxcomp/Loop.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/nxcomp/Loop.cpp b/nxcomp/Loop.cpp
index a3ea11009..7aaff09e8 100644
--- a/nxcomp/Loop.cpp
+++ b/nxcomp/Loop.cpp
@@ -13940,7 +13940,7 @@ void PrintProcessInfo()
//
cerr << "Info: Proxy running in "
- << (control -> ProxyMode == proxy_client ? "server" : "client")
+ << (control -> ProxyMode == proxy_client ? "client" : "server")
<< " mode with pid '" << getpid() << "'.\n";
if (agent == NULL)