summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
authorBen Lindstrom <mouring@eviladmin.org>2001-04-13 04:44:37 +0000
committerBen Lindstrom <mouring@eviladmin.org>2001-04-13 04:44:37 +0000
commit92d4a020011565d766153cbf85210157c33c541c (patch)
treee5ddc5b4ef7074bfa3db339171386afb436a12fb /ssh.c
parent63667f6568d0667b91aea46f77d54311dcffb53a (diff)
- stevesk@cvs.openbsd.org 2001/04/13 01:26:17
[ssh.c] missing \n in error message
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh.c b/ssh.c
index eda443751..68ce17177 100644
--- a/ssh.c
+++ b/ssh.c
@@ -39,7 +39,7 @@
39 */ 39 */
40 40
41#include "includes.h" 41#include "includes.h"
42RCSID("$OpenBSD: ssh.c,v 1.113 2001/04/12 20:09:37 stevesk Exp $"); 42RCSID("$OpenBSD: ssh.c,v 1.114 2001/04/13 01:26:17 stevesk Exp $");
43 43
44#include <openssl/evp.h> 44#include <openssl/evp.h>
45#include <openssl/err.h> 45#include <openssl/err.h>
@@ -544,7 +544,7 @@ main(int ac, char **av)
544 /* No command specified - execute shell on a tty. */ 544 /* No command specified - execute shell on a tty. */
545 tty_flag = 1; 545 tty_flag = 1;
546 if (subsystem_flag) { 546 if (subsystem_flag) {
547 fprintf(stderr, "You must specify a subsystem to invoke."); 547 fprintf(stderr, "You must specify a subsystem to invoke.\n");
548 usage(); 548 usage();
549 } 549 }
550 } else { 550 } else {