From a43b805b6500c71054dd0eb3a3b33b252a44b89f Mon Sep 17 00:00:00 2001 From: Ralph Lange Date: Fri, 30 Nov 2018 17:19:56 +0100 Subject: [PATCH] ca/pcas: fix misleading error message (TCP name resolution) --- src/ca/legacy/pcas/generic/casStrmClient.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ca/legacy/pcas/generic/casStrmClient.cc b/src/ca/legacy/pcas/generic/casStrmClient.cc index 5eebfeb0a..5c84cabcd 100644 --- a/src/ca/legacy/pcas/generic/casStrmClient.cc +++ b/src/ca/legacy/pcas/generic/casStrmClient.cc @@ -1373,7 +1373,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; } @@ -1383,7 +1383,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; } }