From: Christoph Hohmann Date: Mon, 7 Oct 2002 21:08:25 +0000 (+0000) Subject: * src/compose.c X-Git-Tag: rel_0_8_5~10 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=113b9bc758c1fa722a4c4f69b6d30bf0c8794f9b * src/compose.c fix news posting problem --- diff --git a/ChangeLog.claws b/ChangeLog.claws index 3e28f3ef0..33c848a3e 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,8 @@ +2002-10-07 [christoph] 0.8.3claws51 + + * src/compose.c + fix news posting problem + 2002-10-07 [melvin] 0.8.3claws50 * po/fr.po diff --git a/configure.in b/configure.in index b1f94c536..41a11da98 100644 --- a/configure.in +++ b/configure.in @@ -10,7 +10,7 @@ MINOR_VERSION=8 MICRO_VERSION=3 INTERFACE_AGE=0 BINARY_AGE=0 -EXTRA_VERSION=claws50 +EXTRA_VERSION=claws51 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/src/compose.c b/src/compose.c index 25fbf420f..1fec9337c 100644 --- a/src/compose.c +++ b/src/compose.c @@ -3627,16 +3627,15 @@ static gint compose_queue_sub(Compose *compose, gint *msgnum, FolderItem **item, cur = cur->next) fprintf(fp, ",<%s>", (gchar *)cur->data); fprintf(fp, "\n"); - } else - fprintf(fp, "\n"); + } /* write newsgroup list */ - fprintf(fp, "NG:"); if (compose->newsgroup_list) { + fprintf(fp, "NG:"); fprintf(fp, "%s", (gchar *)compose->newsgroup_list->data); for (cur = compose->newsgroup_list->next; cur != NULL; cur = cur->next) fprintf(fp, ",%s", (gchar *)cur->data); + fprintf(fp, "\n"); } - fprintf(fp, "\n"); /* Sylpheed account IDs */ if (mailac) { fprintf(fp, "MAID:%d\n", mailac->account_id);