about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--converter/other/pngtopam.c2
-rw-r--r--doc/HISTORY5
-rw-r--r--version.mk2
3 files changed, 7 insertions, 2 deletions
diff --git a/converter/other/pngtopam.c b/converter/other/pngtopam.c
index 2f99d4ac..15f3911d 100644
--- a/converter/other/pngtopam.c
+++ b/converter/other/pngtopam.c
@@ -527,7 +527,7 @@ dumpPngInfo(struct pngx * const pngxP) {
     else
         pm_message("bKGD chunk: not present");
 
-    if (info_ptr->valid & PNG_INFO_PLTE)
+    if (info_ptr->valid & PNG_INFO_hIST)
         pm_message("hIST chunk: present");
     else
         pm_message("hIST chunk: not present");
diff --git a/doc/HISTORY b/doc/HISTORY
index b4ed888f..4d19d8ee 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -4,6 +4,11 @@ Netpbm.
 CHANGE HISTORY 
 --------------
 
+
+11.01.15 BJH  Release 10.53.01
+              pngtopam: fix bug: -verbose reports history chunk present when
+              it's really a palette.
+
 10.12.30 BJH  Release 10.53.00
 
               Add pammosaicknit.  Thanks Scott Pakin.
diff --git a/version.mk b/version.mk
index bccb93ac..44e9ed6b 100644
--- a/version.mk
+++ b/version.mk
@@ -1,4 +1,4 @@
 NETPBM_MAJOR_RELEASE = 10
 NETPBM_MINOR_RELEASE = 53
-NETPBM_POINT_RELEASE = 00
+NETPBM_POINT_RELEASE = 01