Commit a88ca271 authored by Mike Gabriel's avatar Mike Gabriel

nxcomp/src/Loop.cpp: Harmonize log output. Uniformly, embrace port values by single quotes.

Fixes ArcticaProject/nx-libs#617.
parent 0ef6b0d5
...@@ -11010,8 +11010,8 @@ int SetPorts() ...@@ -11010,8 +11010,8 @@ int SetPorts()
nxinfo << "Loop: cups port: " << cupsPort << "\n" nxinfo << "Loop: cups port: '" << cupsPort
<< std::flush; << "'.\n" << std::flush;
if (control -> ProxyMode == proxy_client) { if (control -> ProxyMode == proxy_client) {
auxPort.setDefaultTCPPort(DEFAULT_NX_AUX_PORT_OFFSET + proxyPort); auxPort.setDefaultTCPPort(DEFAULT_NX_AUX_PORT_OFFSET + proxyPort);
...@@ -11031,8 +11031,8 @@ int SetPorts() ...@@ -11031,8 +11031,8 @@ int SetPorts()
} }
} }
nxinfo << "Loop: aux port: " << auxPort << "\n" nxinfo << "Loop: aux port: '" << auxPort
<< std::flush; << "'.\n" << std::flush;
if (control -> ProxyMode == proxy_client) { if (control -> ProxyMode == proxy_client) {
smbPort.setDefaultTCPPort(DEFAULT_NX_SMB_PORT_OFFSET + proxyPort); smbPort.setDefaultTCPPort(DEFAULT_NX_SMB_PORT_OFFSET + proxyPort);
...@@ -11042,8 +11042,8 @@ int SetPorts() ...@@ -11042,8 +11042,8 @@ int SetPorts()
} }
nxinfo << "Loop: smb port: " << smbPort << "\n" nxinfo << "Loop: smb port: '" << smbPort
<< std::flush; << "'.\n" << std::flush;
if ( mediaPort.configured() ) { if ( mediaPort.configured() ) {
if (control -> ProxyMode == proxy_client) { if (control -> ProxyMode == proxy_client) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment