From: Paul Mangan Date: Wed, 27 Mar 2002 10:12:34 +0000 (+0000) Subject: fix bug from last commit X-Git-Tag: rel_0_7_5~79 X-Git-Url: http://git.claws-mail.org/?p=claws.git;a=commitdiff_plain;h=442374372a80cb2d3fa3edbb43786bf48b57758f fix bug from last commit --- diff --git a/ChangeLog.claws b/ChangeLog.claws index 54cfeeb0e..933100018 100644 --- a/ChangeLog.claws +++ b/ChangeLog.claws @@ -1,3 +1,8 @@ +2002-03-27 [paul] 0.7.4claws49 + + * src/compose.c + fix bug introduced in last commit + 2002-03-27 [paul] 0.7.4claws48 * sync with 0.7.4cvs21 diff --git a/configure.in b/configure.in index 22cd7abc4..ed58a5b14 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=claws48 +EXTRA_VERSION=claws49 VERSION=$MAJOR_VERSION.$MINOR_VERSION.$MICRO_VERSION$EXTRA_VERSION dnl set $target diff --git a/src/compose.c b/src/compose.c index 153474277..aa019795b 100644 --- a/src/compose.c +++ b/src/compose.c @@ -2602,6 +2602,9 @@ gint compose_send(Compose *compose) FolderItem *folder; gint val; + if (compose_check_entries(compose) == FALSE) + return -1; + val = compose_queue(compose, &msgnum, &folder); if (val) { alertpanel_error(_("Could not queue message for sending"));