Module Name:    src
Committed By:   christos
Date:           Wed Jun 17 00:03:42 UTC 2015

Modified Files:
        src/usr.bin/mail: mime_attach.c

Log Message:
one more stray \n


To generate a diff of this commit:
cvs rdiff -u -r1.17 -r1.18 src/usr.bin/mail/mime_attach.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/usr.bin/mail/mime_attach.c
diff -u src/usr.bin/mail/mime_attach.c:1.17 src/usr.bin/mail/mime_attach.c:1.18
--- src/usr.bin/mail/mime_attach.c:1.17	Fri Oct 18 16:47:06 2013
+++ src/usr.bin/mail/mime_attach.c	Tue Jun 16 20:03:42 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: mime_attach.c,v 1.17 2013/10/18 20:47:06 christos Exp $	*/
+/*	$NetBSD: mime_attach.c,v 1.18 2015/06/17 00:03:42 christos Exp $	*/
 
 /*-
  * Copyright (c) 2006 The NetBSD Foundation, Inc.
@@ -33,7 +33,7 @@
 
 #include <sys/cdefs.h>
 #ifndef __lint__
-__RCSID("$NetBSD: mime_attach.c,v 1.17 2013/10/18 20:47:06 christos Exp $");
+__RCSID("$NetBSD: mime_attach.c,v 1.18 2015/06/17 00:03:42 christos Exp $");
 #endif /* not __lint__ */
 
 #include <assert.h>
@@ -529,7 +529,7 @@ fput_body(FILE *fi, FILE *fo, struct Con
 
 	enc = mime_fio_encoder(Cp->C_encoding);
 	if (enc == NULL)
-		warnx("unknown transfer encoding type: %s\n", Cp->C_encoding);
+		warnx("unknown transfer encoding type: %s", Cp->C_encoding);
 	else
 		enc(fi, fo, 0);
 }

Reply via email to