The udf field is no longer set to false in write_<record type>.
This commit is contained in:
@@ -81,8 +81,5 @@ static long write_longout(plongout)
|
||||
|
||||
status = dbPutLink(&plongout->out,DBR_LONG, &plongout->val,1);
|
||||
|
||||
if (RTN_SUCCESS(status))
|
||||
plongout->udf=FALSE;
|
||||
|
||||
return(0);
|
||||
}
|
||||
|
||||
@@ -115,7 +115,5 @@ static long write_longout(plongout)
|
||||
else
|
||||
return(1);
|
||||
|
||||
plongout->udf=FALSE;
|
||||
|
||||
return(0);
|
||||
}
|
||||
|
||||
@@ -88,6 +88,6 @@ static long write_mbbo(pmbbo)
|
||||
long status;
|
||||
|
||||
status = dbPutLink(&pmbbo->out,DBR_USHORT,&pmbbo->val,1);
|
||||
if (RTN_SUCCESS(status)) pmbbo->udf=FALSE;
|
||||
|
||||
return(0);
|
||||
}
|
||||
|
||||
@@ -91,6 +91,5 @@ static long write_mbbo(pmbbo)
|
||||
long status;
|
||||
|
||||
status = dbPutLink(&pmbbo->out,DBR_USHORT, &pmbbo->val,1);
|
||||
if(RTN_SUCCESS(status)) pmbbo->udf=FALSE;
|
||||
return(0);
|
||||
}
|
||||
|
||||
@@ -80,6 +80,5 @@ static long write_pt(ppt)
|
||||
long status;
|
||||
|
||||
status = dbPutLink(&(ppt->out),DBR_SHORT,&(ppt->val),1);
|
||||
if(RTN_SUCCESS(status)) ppt->udf=FALSE;
|
||||
return(0);
|
||||
}
|
||||
|
||||
@@ -118,7 +118,5 @@ static long write_stringout(pstringout)
|
||||
else
|
||||
return(1);
|
||||
|
||||
pstringout->udf = FALSE;
|
||||
|
||||
return(0);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user