summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--usr.bin/mail/fio.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/mail/fio.c b/usr.bin/mail/fio.c
index dd99ce2c9f1..e621bf953a7 100644
--- a/usr.bin/mail/fio.c
+++ b/usr.bin/mail/fio.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: fio.c,v 1.29 2007/09/10 14:29:53 tobias Exp $ */
+/* $OpenBSD: fio.c,v 1.30 2007/10/05 14:39:39 chl Exp $ */
/* $NetBSD: fio.c,v 1.8 1997/07/07 22:57:55 phil Exp $ */
/*
@@ -34,7 +34,7 @@
#if 0
static const char sccsid[] = "@(#)fio.c 8.2 (Berkeley) 4/20/95";
#else
-static const char rcsid[] = "$OpenBSD: fio.c,v 1.29 2007/09/10 14:29:53 tobias Exp $";
+static const char rcsid[] = "$OpenBSD: fio.c,v 1.30 2007/10/05 14:39:39 chl Exp $";
#endif
#endif /* not lint */
@@ -132,7 +132,7 @@ setptr(FILE *ibuf, off_t offset)
(void)fwrite(linebuf, sizeof(*linebuf), count, otf);
if (ferror(otf))
err(1, "/tmp");
- if (count)
+ if (count && linebuf[count - 1] == '\n')
linebuf[count - 1] = '\0';
if (maybe && linebuf[0] == 'F' && ishead(linebuf)) {
msgCount++;