about summary refs log tree commit diff
diff options
context:
space:
mode:
authorgiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2011-01-15 20:14:29 +0000
committergiraffedata <giraffedata@9d0c8265-081b-0410-96cb-a4ca84ce46f8>2011-01-15 20:14:29 +0000
commit3eaf18cfead86bced6c36e517b1738d872ff9e49 (patch)
treeac58e37471d776acd0d416f34fab531ffa1baa36
parentd883d56d58908f25b194b8725189f01be4b5379f (diff)
downloadnetpbm-mirror-3eaf18cfead86bced6c36e517b1738d872ff9e49.tar.gz
netpbm-mirror-3eaf18cfead86bced6c36e517b1738d872ff9e49.tar.xz
netpbm-mirror-3eaf18cfead86bced6c36e517b1738d872ff9e49.zip
Release 10.47.25
git-svn-id: http://svn.code.sf.net/p/netpbm/code/stable@1391 9d0c8265-081b-0410-96cb-a4ca84ce46f8
-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 80438674..0eb00ee2 100644
--- a/converter/other/pngtopam.c
+++ b/converter/other/pngtopam.c
@@ -424,7 +424,7 @@ dump_png_info(png_info *info_ptr) {
     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 9d18f778..37dcefb0 100644
--- a/doc/HISTORY
+++ b/doc/HISTORY
@@ -4,6 +4,11 @@ Netpbm.
 CHANGE HISTORY 
 --------------
 
+11.01.15 BJH  Release 10.47.25
+
+              pngtopam: fix bug: -verbose reports history chunk present when
+              it's really a palette.
+
 10.12.30 BJH  Release 10.47.24
 
               configure: don't default to /usr/X11R6/lib/libX11.so just because
diff --git a/version.mk b/version.mk
index 0a51a17f..0a24a6e5 100644
--- a/version.mk
+++ b/version.mk
@@ -1,3 +1,3 @@
 NETPBM_MAJOR_RELEASE = 10
 NETPBM_MINOR_RELEASE = 47
-NETPBM_POINT_RELEASE = 24
+NETPBM_POINT_RELEASE = 25