summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorKevin Steves <stevesk@cvs.openbsd.org>2001-04-13 01:26:18 +0000
committerKevin Steves <stevesk@cvs.openbsd.org>2001-04-13 01:26:18 +0000
commitef1a08cfdd9582654685b5b94cbdb83bcc8456f4 (patch)
tree7a4452dc74c0643977ba96546b96ebe52f482646 /usr.bin
parent5e6cd5bce61059ce458a91157e4dfe49335fcb14 (diff)
missing \n in error message
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ssh/ssh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c
index 6fd34f94add..512a5af0dbc 100644
--- a/usr.bin/ssh/ssh.c
+++ b/usr.bin/ssh/ssh.c
@@ -39,7 +39,7 @@
*/
#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/err.h>
@@ -531,7 +531,7 @@ main(int ac, char **av)
/* No command specified - execute shell on a tty. */
tty_flag = 1;
if (subsystem_flag) {
- fprintf(stderr, "You must specify a subsystem to invoke.");
+ fprintf(stderr, "You must specify a subsystem to invoke.\n");
usage();
}
} else {