summaryrefslogtreecommitdiff
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
parent63667f6568d0667b91aea46f77d54311dcffb53a (diff)
- stevesk@cvs.openbsd.org 2001/04/13 01:26:17
[ssh.c] missing \n in error message
-rw-r--r--ChangeLog5
-rw-r--r--ssh.c4
2 files changed, 6 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index f328f1df1..4ee25243e 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -24,6 +24,9 @@
24 sftp [user@]host[:file [file]] - Fetch remote file(s) 24 sftp [user@]host[:file [file]] - Fetch remote file(s)
25 sftp [user@]host[:dir[/]] - Start in remote dir/ 25 sftp [user@]host[:dir[/]] - Start in remote dir/
26 OK deraadt@ 26 OK deraadt@
27 - stevesk@cvs.openbsd.org 2001/04/13 01:26:17
28 [ssh.c]
29 missing \n in error message
27 - (bal) Added openbsd-compat/inet_ntop.[ch] since HP/UX (and others) 30 - (bal) Added openbsd-compat/inet_ntop.[ch] since HP/UX (and others)
28 lack it. 31 lack it.
29 32
@@ -5046,4 +5049,4 @@
5046 - Wrote replacements for strlcpy and mkdtemp 5049 - Wrote replacements for strlcpy and mkdtemp
5047 - Released 1.0pre1 5050 - Released 1.0pre1
5048 5051
5049$Id: ChangeLog,v 1.1106 2001/04/13 00:00:14 mouring Exp $ 5052$Id: ChangeLog,v 1.1107 2001/04/13 04:44:37 mouring Exp $
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 {