From ae548d3400da22d0782b24be224edfa256a905bb Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Sat, 24 Feb 2018 17:40:45 -0600 Subject: [PATCH] Remove cantProceed() from dbGetLink() and dbPutLink() Fixes LP: #1528314 Affects 3.15 branch only. --- src/ioc/db/dbLink.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/ioc/db/dbLink.c b/src/ioc/db/dbLink.c index 423a51ec5..e93daa312 100644 --- a/src/ioc/db/dbLink.c +++ b/src/ioc/db/dbLink.c @@ -651,7 +651,7 @@ long dbGetLink(struct link *plink, short dbrType, void *pbuffer, inherit_severity(&plink->value.pv_link, precord, stat, sevr); break; default: - cantProceed("dbGetLinkValue: Illegal link type %d\n", plink->type); + printf("dbGetLinkValue: Illegal link type %d\n", plink->type); status = -1; } if (status) { @@ -755,7 +755,7 @@ long dbPutLink(struct link *plink, short dbrType, const void *pbuffer, status = dbCaPutLink(plink, dbrType, pbuffer, nRequest); break; default: - cantProceed("dbPutLinkValue: Illegal link type %d\n", plink->type); + printf("dbPutLinkValue: Illegal link type %d\n", plink->type); status = -1; } if (status) { @@ -836,4 +836,3 @@ long dbPutLinkLS(struct link *plink, char *pbuffer, epicsUInt32 len) return dbPutLink(plink, DBR_STRING, pbuffer, 1); } -