From 048e8409289021775f6aef3113b3dbc4b08b19bb Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Wed, 4 Jun 2008 19:54:15 +0000 Subject: [PATCH] Oops, missed a few bits... --- src/db/dbAccess.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/db/dbAccess.c b/src/db/dbAccess.c index 82d9ab421..1119830a0 100644 --- a/src/db/dbAccess.c +++ b/src/db/dbAccess.c @@ -8,7 +8,7 @@ * in file LICENSE that is included with this distribution. \*************************************************************************/ /* dbAccess.c */ -/* base/src/db $Id$ */ +/* $Id$ */ /* * Original Author: Bob Dalesio * Current Author: Marty Kraimer @@ -1128,7 +1128,7 @@ static long dbPutFieldLink( break; } - if (special) status = putSpecial(paddr,0); + if (special) status = dbPutSpecial(paddr,0); if (!status) status = dbPutString(&dbEntry,pstring); if (inpOut) { @@ -1137,7 +1137,7 @@ static long dbPutFieldLink( precord->pact = FALSE; } - if (!status && special) status = putSpecial(paddr,1); + if (!status && special) status = dbPutSpecial(paddr,1); if (status) { if (inpOut) { precord->dset = NULL; @@ -1315,7 +1315,7 @@ long epicsShareAPI dbPut(DBADDR *paddr,short dbrType, /* check for special processing is required */ if(special) { - status = putSpecial(paddr,0); + status = dbPutSpecial(paddr,0); if(status) return(status); } if(no_elements<=1) { @@ -1340,7 +1340,7 @@ long epicsShareAPI dbPut(DBADDR *paddr,short dbrType, /* check for special processing is required */ if(special) { - status = putSpecial(paddr,1); + status = dbPutSpecial(paddr,1); if(status) return(status); } /* propagate events for this field */