about summary refs log tree commit diff
diff options
context:
space:
mode:
-rwxr-xr-xconverter/other/anytopnm2
-rw-r--r--doc/HISTORY5
-rw-r--r--version.mk2
3 files changed, 7 insertions, 2 deletions
diff --git a/converter/other/anytopnm b/converter/other/anytopnm
index e5de85cc..5409bccd 100755
--- a/converter/other/anytopnm
+++ b/converter/other/anytopnm
@@ -527,7 +527,7 @@ if [ $# -gt 1 ] ; then
          "input file name." 1>&2
     exit 1
 elif [ $# -eq 1 ] ; then
-    if [ $1 = "--version" -o $1 = "-version" ] ; then
+    if [ "$1" = "--version" -o "$1" = "-version" ] ; then
         pamtopnm --version ; exit $?
     else 
         inputFile="$1"
diff --git a/doc/HISTORY b/doc/HISTORY
index 51f761d4..e3152157 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -4,6 +4,11 @@ Netpbm.
 CHANGE HISTORY 
 --------------
 
+19.12.03 BJH  Release 10.88.01
+
+              anytopnm: Fix unpredictable behavior when file name contains
+              spaces.
+
 19.09.28 BJH  Release 10.88.00
 
               pnmquant: Fail if user specifies more than one of -meanpixel,
diff --git a/version.mk b/version.mk
index 403d42b5..c72e47f1 100644
--- a/version.mk
+++ b/version.mk
@@ -1,3 +1,3 @@
 NETPBM_MAJOR_RELEASE = 10
 NETPBM_MINOR_RELEASE = 88
-NETPBM_POINT_RELEASE = 0
+NETPBM_POINT_RELEASE = 1