diff options
author | 2008-02-27 20:04:59 +0000 | |
---|---|---|
committer | 2008-02-27 20:04:59 +0000 | |
commit | 09d59ca38f53f357fc89800a78ae1591142fc2ee (patch) | |
tree | 736f5bc4b51d856bb265e91000ea51c752e1c0e8 /usr.bin/cvs/diff.c | |
parent | sync (diff) | |
download | wireguard-openbsd-09d59ca38f53f357fc89800a78ae1591142fc2ee.tar.xz wireguard-openbsd-09d59ca38f53f357fc89800a78ae1591142fc2ee.zip |
Always end line that states diff options with a newline.
ok joris
Diffstat (limited to 'usr.bin/cvs/diff.c')
-rw-r--r-- | usr.bin/cvs/diff.c | 5 |
1 files changed, 3 insertions, 2 deletions
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 <joris@openbsd.org> * @@ -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) { |