From 09d59ca38f53f357fc89800a78ae1591142fc2ee Mon Sep 17 00:00:00 2001 From: tobias Date: Wed, 27 Feb 2008 20:04:59 +0000 Subject: Always end line that states diff options with a newline. ok joris --- usr.bin/cvs/diff.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'usr.bin/cvs/diff.c') diff --git a/usr.bin/cvs/diff.c b/usr.bin/cvs/diff.c index 02d73ebf55b..41129f63750 100644 --- a/usr.bin/cvs/diff.c +++ b/usr.bin/cvs/diff.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diff.c,v 1.129 2008/02/11 20:33:11 tobias Exp $ */ +/* $OpenBSD: diff.c,v 1.130 2008/02/27 20:04:59 tobias Exp $ */ /* * Copyright (c) 2006 Joris Vink * @@ -393,7 +393,8 @@ cvs_diff_local(struct cvs_file *cf) } if (diff_rev2 == NULL) - cvs_printf(" %s\n", cf->file_name); + cvs_printf(" %s", cf->file_name); + cvs_printf("\n"); } else { cvs_printf("diff "); switch (diff_format) { -- cgit v1.2.3-59-g8ed1b