changed errlogPrintf to printf because errlogPrintf does not work
This commit is contained in:
@@ -364,12 +364,12 @@ LOCAL int req_server (void)
|
||||
ca_server_port = ntohs (serverAddr.sin_port);
|
||||
|
||||
if ( portChange ) {
|
||||
errlogPrintf ( "cas warning: Configured TCP port was unavailable.\n");
|
||||
errlogPrintf ( "cas warning: Using dynamically assigned TCP port %hu,\n",
|
||||
printf ( "cas warning: Configured TCP port was unavailable.\n");
|
||||
printf ( "cas warning: Using dynamically assigned TCP port %hu,\n",
|
||||
ca_server_port );
|
||||
errlogPrintf ( "cas warning: but now two or more severs share the same UDP port.\n");
|
||||
errlogPrintf ( "cas warning: Depending on your IP kernel this server may not be\n" );
|
||||
errlogPrintf ( "cas warning: reachable with UDP unicast (a host's IP in EPICS_CA_ADDR_LIST)\n" );
|
||||
printf ( "cas warning: but now two or more severs share the same UDP port.\n");
|
||||
printf ( "cas warning: Depending on your IP kernel this server may not be\n" );
|
||||
printf ( "cas warning: reachable with UDP unicast (a host's IP in EPICS_CA_ADDR_LIST)\n" );
|
||||
}
|
||||
|
||||
/* listen and accept new connections */
|
||||
|
||||
Reference in New Issue
Block a user