From 57cc033b52de69ad678fe3ab94a69a897f6dd63c Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Mon, 28 Dec 2009 22:05:21 -0600 Subject: [PATCH] Correct error messages. --- src/std/dev/devBiSoftCallback.c | 4 ++-- src/std/dev/devLiSoftCallback.c | 4 ++-- src/std/dev/devMbbiSoftCallback.c | 4 ++-- src/std/dev/devSiSoftCallback.c | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/src/std/dev/devBiSoftCallback.c b/src/std/dev/devBiSoftCallback.c index 8e6a67432..bcd110bf7 100644 --- a/src/std/dev/devBiSoftCallback.c +++ b/src/std/dev/devBiSoftCallback.c @@ -104,7 +104,7 @@ static long init_record(struct biRecord *pbi) if(plink->type!=INST_IO) { recGblRecordError(S_db_badField,(void *)pbi, - "devBiSoftCallback (init_record) linked record not found"); + "devBiSoftCallback (init_record) Illegal INP field"); pbi->pact=TRUE; return(S_db_badField); } @@ -115,7 +115,7 @@ static long init_record(struct biRecord *pbi) status = dbNameToAddr(pvname,pdbaddr); if(status) { recGblRecordError(status,(void *)pbi, - "devBiSoftCallback (init_record) Illegal INP field"); + "devBiSoftCallback (init_record) linked record not found"); pbi->pact=TRUE; return(status); } diff --git a/src/std/dev/devLiSoftCallback.c b/src/std/dev/devLiSoftCallback.c index 1cdf21b2e..350fa258f 100644 --- a/src/std/dev/devLiSoftCallback.c +++ b/src/std/dev/devLiSoftCallback.c @@ -104,7 +104,7 @@ static long init_record(struct longinRecord *pli) if(plink->type!=INST_IO) { recGblRecordError(S_db_badField,(void *)pli, - "devLiSoftCallback (init_record) linked record not found"); + "devLiSoftCallback (init_record) Illegal INP field"); pli->pact=TRUE; return(S_db_badField); } @@ -115,7 +115,7 @@ static long init_record(struct longinRecord *pli) status = dbNameToAddr(pvname,pdbaddr); if(status) { recGblRecordError(status,(void *)pli, - "devLiSoftCallback (init_record) Illegal INP field"); + "devLiSoftCallback (init_record) linked record not found"); pli->pact=TRUE; return(status); } diff --git a/src/std/dev/devMbbiSoftCallback.c b/src/std/dev/devMbbiSoftCallback.c index b0fb1b7e5..e23113672 100644 --- a/src/std/dev/devMbbiSoftCallback.c +++ b/src/std/dev/devMbbiSoftCallback.c @@ -104,7 +104,7 @@ static long init_record(struct mbbiRecord *pmbbi) if(plink->type!=INST_IO) { recGblRecordError(S_db_badField,(void *)pmbbi, - "devMbbiSoftCallback (init_record) linked record not found"); + "devMbbiSoftCallback (init_record) Illegal INP field"); pmbbi->pact=TRUE; return(S_db_badField); } @@ -115,7 +115,7 @@ static long init_record(struct mbbiRecord *pmbbi) status = dbNameToAddr(pvname,pdbaddr); if(status) { recGblRecordError(status,(void *)pmbbi, - "devMbbiSoftCallback (init_record) Illegal INP field"); + "devMbbiSoftCallback (init_record) linked record not found"); pmbbi->pact=TRUE; return(status); } diff --git a/src/std/dev/devSiSoftCallback.c b/src/std/dev/devSiSoftCallback.c index bb2d88ce5..46b2e92f9 100644 --- a/src/std/dev/devSiSoftCallback.c +++ b/src/std/dev/devSiSoftCallback.c @@ -104,7 +104,7 @@ static long init_record(struct stringinRecord *pstringin) if(plink->type!=INST_IO) { recGblRecordError(S_db_badField,(void *)pstringin, - "devSiSoftCallback (init_record) linked record not found"); + "devSiSoftCallback (init_record) Illegal INP field"); pstringin->pact=TRUE; return(S_db_badField); } @@ -115,7 +115,7 @@ static long init_record(struct stringinRecord *pstringin) status = dbNameToAddr(pvname,pdbaddr); if(status) { recGblRecordError(status,(void *)pstringin, - "devSiSoftCallback (init_record) Illegal INP field"); + "devSiSoftCallback (init_record) linked record not found"); pstringin->pact=TRUE; return(status); }