From 052f0992d2ebac5b703dbe509a8fbc17255ba8f1 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Wed, 6 Nov 2013 09:28:49 -0600 Subject: [PATCH] dbStatic: Add property metadata to dump outputs Both dbWriteRecordTypeFP() and dbDumpField() now show the value of the prop() field attribute. --- src/ioc/dbStatic/dbStaticLib.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/ioc/dbStatic/dbStaticLib.c b/src/ioc/dbStatic/dbStaticLib.c index d23917d27..ff1361d7e 100644 --- a/src/ioc/dbStatic/dbStaticLib.c +++ b/src/ioc/dbStatic/dbStaticLib.c @@ -971,6 +971,7 @@ long dbWriteRecordTypeFP( pdbFldDes->size); } if(pdbFldDes->process_passive) fprintf(fp,"\t\tpp(TRUE)\n"); + if(pdbFldDes->prop) fprintf(fp,"\t\tprop(YES)\n"); if(pdbFldDes->base) fprintf(fp,"\t\tbase(HEX)\n"); if(pdbFldDes->interest) fprintf(fp,"\t\tinterest(%d)\n",pdbFldDes->interest); @@ -3140,6 +3141,7 @@ void dbDumpField( else printf("\t field_type: %s\n", pamapdbfType[j].strvalue); printf("\tprocess_passive: %hd\n",pdbFldDes->process_passive); + printf("\t property: %hd\n",pdbFldDes->prop); printf("\t base: %d\n",pdbFldDes->base); if(!pdbFldDes->promptgroup) { printf("\t promptgroup: %d\n",pdbFldDes->promptgroup);