summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/ssh.c b/ssh.c
index a8a806b8c..2f3b5fc1b 100644
--- a/ssh.c
+++ b/ssh.c
@@ -18,7 +18,7 @@ Modified to work with SSL by Niels Provos <provos@citi.umich.edu> in Canada.
18*/ 18*/
19 19
20#include "includes.h" 20#include "includes.h"
21RCSID("$Id: ssh.c,v 1.7 1999/11/13 02:28:45 damien Exp $"); 21RCSID("$Id: ssh.c,v 1.8 1999/11/15 04:25:10 damien Exp $");
22 22
23#include "xmalloc.h" 23#include "xmalloc.h"
24#include "ssh.h" 24#include "ssh.h"
@@ -383,8 +383,9 @@ main(int ac, char **av)
383 383
384 case 'o': 384 case 'o':
385 dummy = 1; 385 dummy = 1;
386 process_config_line(&options, host ? host : "", optarg, 386 if (process_config_line(&options, host ? host : "", optarg,
387 "command-line", 0, &dummy); 387 "command-line", 0, &dummy) != 0)
388 exit(1);
388 break; 389 break;
389 390
390 default: 391 default: