From 07b3b7e32d64d4b929f24867b9912bcbcda2dce9 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Fri, 27 Apr 2012 13:21:43 -0400 Subject: [PATCH] Make casr print the full channel name, not just the record name. --- src/ioc/rsrv/caservertask.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/ioc/rsrv/caservertask.c b/src/ioc/rsrv/caservertask.c index 5554d9ad7..febd74f49 100644 --- a/src/ioc/rsrv/caservertask.c +++ b/src/ioc/rsrv/caservertask.c @@ -356,8 +356,8 @@ static void showChanList ( epicsMutexMustLock ( client->chanListLock ); pciu = (struct channel_in_use *) pList->node.next; while ( pciu ){ - printf( "\t%s(%d%c%c)", - dbChannelRecord(pciu->dbch)->name, + printf( "\t%s (%d%c%c)", + dbChannelName(pciu->dbch), ellCount ( &pciu->eventq ), asCheckGet ( pciu->asClientPVT ) ? 'r': '-', rsrvCheckPut ( pciu ) ? 'w': '-' );