From 42a3b4fbfd1a7c8b0359da6ce56bceba3849c58e Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Thu, 29 May 2014 17:36:04 -0500 Subject: [PATCH] Add a ca: prefix to RSRV's identity string --- src/ioc/rsrv/camsgtask.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ioc/rsrv/camsgtask.c b/src/ioc/rsrv/camsgtask.c index 16af5bb0d..126bafd80 100644 --- a/src/ioc/rsrv/camsgtask.c +++ b/src/ioc/rsrv/camsgtask.c @@ -174,7 +174,7 @@ int casClientInitiatingCurrentThread ( char * pBuf, size_t bufSize ) return RSRV_ERROR; if ( pBuf && bufSize ) { - epicsSnprintf(pBuf, bufSize, "%s@%s", + epicsSnprintf(pBuf, bufSize, "ca:%s@%s", pClient->pUserName, pClient->pHostName); } return RSRV_OK;