diff options
author | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-04-07 13:48:56 +0200 |
---|---|---|
committer | Mike Gabriel <mike.gabriel@das-netzwerkteam.de> | 2017-04-07 13:49:50 +0200 |
commit | 1441b02f05a9671b9ad8bcba551ebc004af821a2 (patch) | |
tree | 6c6355e9964bb2db7376a15567a56f4cc12de436 /nxcomp | |
parent | dcdbc102c1d1827fd10959148d52f9e2e96bf3cd (diff) | |
download | nx-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().
Diffstat (limited to 'nxcomp')
-rw-r--r-- | nxcomp/Loop.cpp | 2 |
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) |