diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2001-03-09 17:01:03 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2001-03-09 17:01:03 +0000 |
commit | 576da13a8515f183ffe1ce328a79b2791f273fdd (patch) | |
tree | 6f19e056e938734de3689b5ab47343d432ee5141 | |
parent | e8848e38741551a8d9e902e72186c225f06e5222 (diff) |
Add a missing newline in debug mode to separate debug output from
line containing command completion; "Brian J. Kifiak" <bk@rt.fm>
-rw-r--r-- | usr.bin/ftp/complete.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/ftp/complete.c b/usr.bin/ftp/complete.c index 3932cb23eba..ba5f02e6d85 100644 --- a/usr.bin/ftp/complete.c +++ b/usr.bin/ftp/complete.c @@ -1,4 +1,4 @@ -/* $OpenBSD: complete.c,v 1.9 1997/09/04 04:37:14 millert Exp $ */ +/* $OpenBSD: complete.c,v 1.10 2001/03/09 17:01:02 millert Exp $ */ /* $NetBSD: complete.c,v 1.10 1997/08/18 10:20:18 lukem Exp $ */ /*- @@ -39,7 +39,7 @@ #ifndef SMALL #ifndef lint -static char rcsid[] = "$OpenBSD: complete.c,v 1.9 1997/09/04 04:37:14 millert Exp $"; +static char rcsid[] = "$OpenBSD: complete.c,v 1.10 2001/03/09 17:01:02 millert Exp $"; #endif /* not lint */ /* @@ -255,6 +255,8 @@ complete_remote(word, list) mflag = 1; emesg = NULL; + if (debug) + (void)putc('\n', ttyout); while ((cp = remglob(dummyargv, 0, &emesg)) != NULL) { char *tcp; |