From: John Darrington Date: Tue, 31 Mar 2009 05:07:03 +0000 (+0800) Subject: Fixed bug writing portable files. X-Git-Tag: v0.6.2-pre1~11 X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?p=pspp-builds.git;a=commitdiff_plain;h=92f9121c49de9f91d9d743b5dc854cf701713dc5 Fixed bug writing portable files. Don't append slash to sysmis values when writing portable files. Fixes bug #26034 --- diff --git a/src/data/por-file-writer.c b/src/data/por-file-writer.c index 8a27f6b7..a50563ab 100644 --- a/src/data/por-file-writer.c +++ b/src/data/por-file-writer.c @@ -215,7 +215,8 @@ write_float (struct pfm_writer *w, double d) char buffer[64]; format_trig_double (d, floor (d) == d ? DBL_DIG : w->digits, buffer); buf_write (w, buffer, strlen (buffer)); - buf_write (w, "/", 1); + if (d != SYSMIS) + buf_write (w, "/", 1); } /* Write N to the portable file as an integer field. */ diff --git a/tests/command/import-export.sh b/tests/command/import-export.sh index f0c2b5c4..0cb178bf 100755 --- a/tests/command/import-export.sh +++ b/tests/command/import-export.sh @@ -61,7 +61,7 @@ cat > $TESTFILE <