Skip to content

Commit fe37645

Browse files
committed
Restore the output file style, fields separated by commas, and strings without quotation marks
1 parent 0741e06 commit fe37645

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dss.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ extern tdef tdefs[];
488488

489489
/******* output macros ********/
490490
#ifndef SEPARATOR
491-
#define SEPARATOR ',' /* field spearator for generated flat files */
491+
#define SEPARATOR '|' /* field spearator for generated flat files */
492492
#endif
493493
/* Data type flags for a single print routine */
494494
#define DT_STR 0

print.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ dbg_print(int format, FILE *target, void *data, int len, int sep)
8787
if (columnar)
8888
fprintf(target, "%-*s", len, (char *)data);
8989
else
90-
fprintf(target, "\"%s\"", (char *)data);
90+
fprintf(target, "%s", (char *)data);
9191
break;
9292
#ifdef MVS
9393
case DT_VSTR:

0 commit comments

Comments
 (0)