[ssh.c]
     missing \n in error message
This commit is contained in:
Ben Lindstrom 2001-04-13 04:44:37 +00:00
parent 63667f6568
commit 92d4a02001
2 changed files with 6 additions and 3 deletions

View File

@ -24,6 +24,9 @@
sftp [user@]host[:file [file]] - Fetch remote file(s) sftp [user@]host[:file [file]] - Fetch remote file(s)
sftp [user@]host[:dir[/]] - Start in remote dir/ sftp [user@]host[:dir[/]] - Start in remote dir/
OK deraadt@ OK deraadt@
- stevesk@cvs.openbsd.org 2001/04/13 01:26:17
[ssh.c]
missing \n in error message
- (bal) Added openbsd-compat/inet_ntop.[ch] since HP/UX (and others) - (bal) Added openbsd-compat/inet_ntop.[ch] since HP/UX (and others)
lack it. lack it.
@ -5046,4 +5049,4 @@
- Wrote replacements for strlcpy and mkdtemp - Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1 - Released 1.0pre1
$Id: ChangeLog,v 1.1106 2001/04/13 00:00:14 mouring Exp $ $Id: ChangeLog,v 1.1107 2001/04/13 04:44:37 mouring Exp $

4
ssh.c
View File

@ -39,7 +39,7 @@
*/ */
#include "includes.h" #include "includes.h"
RCSID("$OpenBSD: ssh.c,v 1.113 2001/04/12 20:09:37 stevesk Exp $"); RCSID("$OpenBSD: ssh.c,v 1.114 2001/04/13 01:26:17 stevesk Exp $");
#include <openssl/evp.h> #include <openssl/evp.h>
#include <openssl/err.h> #include <openssl/err.h>
@ -544,7 +544,7 @@ main(int ac, char **av)
/* No command specified - execute shell on a tty. */ /* No command specified - execute shell on a tty. */
tty_flag = 1; tty_flag = 1;
if (subsystem_flag) { if (subsystem_flag) {
fprintf(stderr, "You must specify a subsystem to invoke."); fprintf(stderr, "You must specify a subsystem to invoke.\n");
usage(); usage();
} }
} else { } else {