diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-06-30 09:42:15 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2005-06-30 09:42:15 +0000 |
commit | 5a45a781bd13284b1ac716941a933450bc3cf452 (patch) | |
tree | 5059b6e872b857778a98ebc361e446378002d83a /usr.bin | |
parent | d0da6045c3473c63c2c5ebcb604695383312ac92 (diff) |
missing \n in server-side output;
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/cvs/status.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/cvs/status.c b/usr.bin/cvs/status.c index 3d3c9c67d13..5b184d96123 100644 --- a/usr.bin/cvs/status.c +++ b/usr.bin/cvs/status.c @@ -1,4 +1,4 @@ -/* $OpenBSD: status.c,v 1.24 2005/06/25 13:53:37 joris Exp $ */ +/* $OpenBSD: status.c,v 1.25 2005/06/30 09:42:14 xsa Exp $ */ /* * Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -227,6 +227,7 @@ cvs_status_local(CVSFILE *cf, void *arg) cvs_printf(" Sticky Options: %s\n", cf->cf_opts == NULL ? "(none)" : cf->cf_opts); + cvs_printf("\n"); rcs_close(rf); return (0); |