changed errlogPrintf to printf because errlogPrintf does not work

This commit is contained in:
Jeff Hill
2000-11-20 21:52:40 +00:00
parent 1db05de682
commit 76f6bb3c2f

View File

@@ -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 */