From 9e67db7af06fe94475e9008e5dc4d4ccc56216f8 Mon Sep 17 00:00:00 2001 From: Marty Kraimer Date: Fri, 18 Feb 2000 13:31:10 +0000 Subject: [PATCH] If the put is to the VAL field then udf is set false. --- src/dbStatic/dbStaticLib.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/dbStatic/dbStaticLib.c b/src/dbStatic/dbStaticLib.c index 7e2d2d429..e8e7a73a6 100644 --- a/src/dbStatic/dbStaticLib.c +++ b/src/dbStatic/dbStaticLib.c @@ -1967,7 +1967,8 @@ long epicsShareAPI dbPutString(DBENTRY *pdbentry,char *pstring) case DBF_FLOAT: case DBF_DOUBLE: case DBF_MENU: - return(dbPutStringNum(pdbentry,pstring)); + status = dbPutStringNum(pdbentry,pstring); + break; case DBF_DEVICE: { DBENTRY dbEntry; char *name;