From: Paul Mangan Date: Sat, 16 Mar 2002 07:45:19 +0000 (+0000) Subject: fix 'dynamic' signatures X-Git-Tag: rel_0_7_5~128 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=9c2932226fdecf012d583a4af06db4dfa388e30d fix 'dynamic' signatures --- diff --git a/ChangeLog.claws b/ChangeLog.claws index 89ef6a636..fce0c3952 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,9 @@ +2002-03-16 [paul] 0.7.4claws13 + + * src/compose.c + fix 'dynamic' signatures, make it work again + broken during sync on 2002-03-14 (0.7.4claws2) + 2002-03-15 [match] 0.7.4claws12 * src/addrharvest.[ch] diff --git a/configure.in b/configure.in index d9f14c44a..43cf6c6a3 100644 --- a/configure.in +++ b/configure.in @@ -8,7 +8,7 @@ MINOR_VERSION=7 MICRO_VERSION=4 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws12 +EXTRA_VERSION=claws13 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/src/compose.c b/src/compose.c index 891b2a4c2..3333d5c3a 100644 --- a/src/compose.c +++ b/src/compose.c @@ -1765,7 +1765,7 @@ static void compose_exec_sig(Compose *compose, gchar *sigfile) if (strlen(sigfile) < 2) return; - sigprg = popen(sigfile+1, "rb"); + sigprg = popen(sigfile+1, "r"); if (sigprg) { buf = g_malloc(buf_len);