diff --git a/main/dumpparser.y b/main/dumpparser.y index 6e6da94..f5de43e 100644 --- a/main/dumpparser.y +++ b/main/dumpparser.y @@ -236,9 +236,7 @@ singlefield : VALUE { } if (curfield) { curleng=strlen(curfield); - if (cur->quoted) { - fprintf(stdout, "'"); /* Opening quote for field value */ - } + fprintf(stdout, "'"); /* Opening quote for field value */ } else { @@ -263,9 +261,7 @@ singlefield : VALUE { else { bDone=true; - if (cur->quoted) { - fprintf(stdout, "'"); /* Ending quote for field value */ - } + fprintf(stdout, "'"); /* Ending quote for field value */ continue; } }