commit b4814bb34f53dc42476d6748cd88b4d2663aa5e6
parent 6572a6b64d38728494253037fbe6e4b295a7148d
Author: Colin Leroy <colin@colino.net>
Date: Sat, 19 Nov 2011 09:12:28 +0000
2011-11-19 [colin] 3.7.10cvs89
* src/procheader.c
Constness fix
Diffstat:
4 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/ChangeLog b/ChangeLog
@@ -1,3 +1,8 @@
+2011-11-19 [colin] 3.7.10cvs89
+
+ * src/procheader.c
+ Constness fix
+
2011-11-18 [pawel] 3.7.10cvs88
* src/compose.c
diff --git a/PATCHSETS b/PATCHSETS
@@ -4292,3 +4292,4 @@
( cvs diff -u -r 1.83.2.180 -r 1.83.2.181 src/mimeview.c; ) > 3.7.10cvs86.patchset
( cvs diff -u -r 1.382.2.594 -r 1.382.2.595 src/compose.c; cvs diff -u -r 1.47.2.54 -r 1.47.2.55 src/procheader.c; cvs diff -u -r 1.11.2.12 -r 1.11.2.13 src/procheader.h; ) > 3.7.10cvs87.patchset
( cvs diff -u -r 1.382.2.595 -r 1.382.2.596 src/compose.c; cvs diff -u -r 1.274.2.336 -r 1.274.2.337 src/mainwindow.c; cvs diff -u -r 1.83.2.181 -r 1.83.2.182 src/mimeview.c; cvs diff -u -r 1.20.2.35 -r 1.20.2.36 src/mimeview.h; cvs diff -u -r 1.204.2.205 -r 1.204.2.206 src/prefs_common.c; cvs diff -u -r 1.103.2.134 -r 1.103.2.135 src/prefs_common.h; ) > 3.7.10cvs88.patchset
+( cvs diff -u -r 1.47.2.55 -r 1.47.2.56 src/procheader.c; ) > 3.7.10cvs89.patchset
diff --git a/configure.ac b/configure.ac
@@ -12,7 +12,7 @@ MINOR_VERSION=7
MICRO_VERSION=10
INTERFACE_AGE=0
BINARY_AGE=0
-EXTRA_VERSION=88
+EXTRA_VERSION=89
EXTRA_RELEASE=
EXTRA_GTK2_VERSION=
diff --git a/src/procheader.c b/src/procheader.c
@@ -1039,7 +1039,7 @@ HeaderEntry *procheader_entries_from_str(const gchar *str)
HeaderEntry *entries = NULL, *he;
int numh = 0, i = 0;
gchar **names = NULL;
- gchar *s = str;
+ const gchar *s = str;
if (s == NULL) {
return NULL;