summaryrefslogtreecommitdiff
path: root/ssh.c
diff options
context:
space:
mode:
Diffstat (limited to 'ssh.c')
-rw-r--r--ssh.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/ssh.c b/ssh.c
index 2a2fb2d35..bf0ac6bd8 100644
--- a/ssh.c
+++ b/ssh.c
@@ -11,7 +11,7 @@
11 */ 11 */
12 12
13#include "includes.h" 13#include "includes.h"
14RCSID("$Id: ssh.c,v 1.17 2000/01/19 03:36:49 damien Exp $"); 14RCSID("$Id: ssh.c,v 1.18 2000/01/22 23:32:04 damien Exp $");
15 15
16#include "xmalloc.h" 16#include "xmalloc.h"
17#include "ssh.h" 17#include "ssh.h"
@@ -217,6 +217,10 @@ main(int ac, char **av)
217 /* Save our own name. */ 217 /* Save our own name. */
218 av0 = av[0]; 218 av0 = av[0];
219 219
220#ifdef SOCKS
221 SOCKSinit(av0);
222#endif /* SOCKS */
223
220 /* Initialize option structure to indicate that no values have been set. */ 224 /* Initialize option structure to indicate that no values have been set. */
221 initialize_options(&options); 225 initialize_options(&options);
222 226