diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-03-06 13:47:35 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-03-06 13:47:35 +0000 |
commit | cf7cf1010710bb949246167dc4cc1f5ddf783491 (patch) | |
tree | f875455df8e7afe032a1748bf383239009dde9dd /usr.bin | |
parent | 80f19c115d6127dc750d73b9c0dd0061858de1dc (diff) |
missing newline in checkout_rev(); spotted by joris@.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/rcs/co.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/usr.bin/rcs/co.c b/usr.bin/rcs/co.c index 2d0874db259..f0165cbb494 100644 --- a/usr.bin/rcs/co.c +++ b/usr.bin/rcs/co.c @@ -1,4 +1,4 @@ -/* $OpenBSD: co.c,v 1.55 2006/03/05 14:18:56 niallo Exp $ */ +/* $OpenBSD: co.c,v 1.56 2006/03/06 13:47:34 xsa Exp $ */ /* * Copyright (c) 2005 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -324,6 +324,9 @@ checkout_rev(RCSFILE *file, RCSNUM *frev, const char *dst, int flags, printf(" (unlocked)\n"); } + if ((verbose == 1) && !(flags & NEWFILE)) + printf("\n"); + if (flags & CO_LOCK) { lcount++; if (lcount > 1) |