From: Alfons Hoogervorst Date: Fri, 22 Mar 2002 06:08:49 +0000 (+0000) Subject: fix use of incorrect uidl string X-Git-Tag: rel_0_7_5~105 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=833b99642caf75a730172b14b2da26194eec317a;ds=sidebyside fix use of incorrect uidl string --- diff --git a/ChangeLog.claws b/ChangeLog.claws index 0a00b2589..44cacec75 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,9 @@ +2002-03-22 [alfons] 0.7.4claws31 + + * src/pop.c + fix getting uidl from incorrect string + (spotted by Colin) + 2002-03-21 [alfons] 0.7.4claws30 * src/pop.c diff --git a/configure.in b/configure.in index 8b0dcd56c..c35c4acf0 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=claws30 +EXTRA_VERSION=claws31 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/src/pop.c b/src/pop.c index 6ea299c26..901a3b2ee 100644 --- a/src/pop.c +++ b/src/pop.c @@ -346,7 +346,7 @@ static gboolean should_delete(const char *uidl, gpointer data) /* remove \r\n */ tuidl = g_strndup(uidl, strlen(uidl) - 2); - answer = g_strsplit(uidl, " ", 2); + answer = g_strsplit(tuidl, " ", 2); id = atoi(answer[0]); if (NULL != (sdate = g_hash_table_lookup(state->uidl_table, answer[1]))) {