From 7e3e7b5327494d72fd369c679389959731366c8a Mon Sep 17 00:00:00 2001 From: Ralph Lange Date: Fri, 30 Nov 2018 17:17:00 +0100 Subject: [PATCH] pcas: fix misleading error message (TCP name resolution) --- src/pcas/generic/casStrmClient.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pcas/generic/casStrmClient.cc b/src/pcas/generic/casStrmClient.cc index b4c2f5812..1844d619f 100644 --- a/src/pcas/generic/casStrmClient.cc +++ b/src/pcas/generic/casStrmClient.cc @@ -1401,7 +1401,7 @@ caStatus casStrmClient :: searchAction ( epicsGuard < casClientMutex > & guard ) if ( pChanName[0] == '\0' ) { caServerI::dumpMsg ( this->pHostName, "?", mp, this->ctx.getData(), - "zero length PV name in UDP search request?\n" ); + "zero length PV name in TCP search request?\n" ); return S_cas_success; } @@ -1411,7 +1411,7 @@ caStatus casStrmClient :: searchAction ( epicsGuard < casClientMutex > & guard ) for ( unsigned i = mp->m_postsize-1; pChanName[i] != '\0'; i-- ) { if ( i <= 1 ) { caServerI::dumpMsg ( pHostName, "?", mp, this->ctx.getData(), - "unterminated PV name in UDP search request?\n" ); + "unterminated PV name in TCP search request?\n" ); return S_cas_success; } }