From 76f6bb3c2f5f9538ba59e53299fce4a8937f8c1e Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Mon, 20 Nov 2000 21:52:40 +0000 Subject: [PATCH] changed errlogPrintf to printf because errlogPrintf does not work --- src/rsrv/caservertask.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/rsrv/caservertask.c b/src/rsrv/caservertask.c index 8128c8607..f6cf12226 100644 --- a/src/rsrv/caservertask.c +++ b/src/rsrv/caservertask.c @@ -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 */