More changes for handling forms

This commit is contained in:
Marty Kraimer
1996-08-14 20:59:07 +00:00
parent 18c52e5839
commit d807b2ace5

View File

@@ -1666,8 +1666,10 @@ char *dbGetString(DBENTRY *pdbentry)
case PV_LINK:
case CA_LINK:
case DB_LINK:
sprintf(message,"%s",
plink->value.pv_link.pvname);
if(plink->value.pv_link.pvname)
strcpy(message,plink->value.pv_link.pvname);
else
strcpy(message,"");
break;
default :
return(NULL);