From 46c1c5308ac762c1a5c590f1f6856f8d7a85d356 Mon Sep 17 00:00:00 2001 From: Johan Danielsson Date: Fri, 5 Mar 1999 14:14:28 +0000 Subject: [PATCH] fix handling of messages w/o body git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@5476 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/popper/pop_send.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/appl/popper/pop_send.c b/appl/popper/pop_send.c index 0a0bf650a..7895a144f 100644 --- a/appl/popper/pop_send.c +++ b/appl/popper/pop_send.c @@ -147,7 +147,7 @@ pop_send(POP *p) } /* Send the message body */ { - int blank_line = 0; + int blank_line = 1; while (fgets(buffer, MAXMSGLINELEN-1, p->drop)) { /* Look for the start of the next message */ if (!IS_MAILDIR(p) && blank_line && strncmp(buffer,"From ",5) == 0)