The udf field is no longer set to false in write_<record type>.

This commit is contained in:
Janet B. Anderson
1996-10-30 17:46:33 +00:00
parent 884737e82e
commit 5981891ee0
6 changed files with 1 additions and 10 deletions

View File

@@ -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);
}

View File

@@ -115,7 +115,5 @@ static long write_longout(plongout)
else
return(1);
plongout->udf=FALSE;
return(0);
}

View File

@@ -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);
}

View File

@@ -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);
}

View File

@@ -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);
}

View File

@@ -118,7 +118,5 @@ static long write_stringout(pstringout)
else
return(1);
pstringout->udf = FALSE;
return(0);
}