]> andersk Git - openssh.git/commitdiff
- markus@cvs.openbsd.org 2003/08/13 09:07:10
authordtucker <dtucker>
Wed, 13 Aug 2003 10:38:36 +0000 (10:38 +0000)
committerdtucker <dtucker>
Wed, 13 Aug 2003 10:38:36 +0000 (10:38 +0000)
     [readconf.c ssh.c]
     socks4->socks, since with support both 4 and 5; dtucker@zip.com.au

ChangeLog
readconf.c
ssh.c

index 05ee72f6a2d698366a9c702a5b37702d87c14263..f79933fed0b1bcbde103722a326136aaa44a5d0b 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -10,6 +10,9 @@
      ssh_config.5 sshconnect1.c sshd.8 sshd.c sshd_config sshd_config.5]
      remove RhostsAuthentication; suggested by djm@ before; ok djm@, deraadt@,
      fgsch@, miod@, henning@, jakob@ and others
+   - markus@cvs.openbsd.org 2003/08/13 09:07:10
+     [readconf.c ssh.c]
+     socks4->socks, since with support both 4 and 5; dtucker@zip.com.au
 
 20030811
  - (dtucker) OpenBSD CVS Sync
index 355a7dfcc20b7b92edc922456af9179a335ace23..96ad25a51032800588f711dd419451719406face 100644 (file)
@@ -12,7 +12,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: readconf.c,v 1.116 2003/08/13 08:46:30 markus Exp $");
+RCSID("$OpenBSD: readconf.c,v 1.117 2003/08/13 09:07:09 markus Exp $");
 
 #include "ssh.h"
 #include "xmalloc.h"
@@ -670,7 +670,7 @@ parse_int:
                        fatal("%.200s line %d: Badly formatted port number.",
                            filename, linenum);
                if (*activep)
-                       add_local_forward(options, fwd_port, "socks4", 0);
+                       add_local_forward(options, fwd_port, "socks", 0);
                break;
 
        case oClearAllForwardings:
diff --git a/ssh.c b/ssh.c
index 71556e2057ba024af524b1a77d57c2a6dac34eb6..694bb5acc05da632860a7595fbc3a67c0afefea6 100644 (file)
--- a/ssh.c
+++ b/ssh.c
@@ -40,7 +40,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: ssh.c,v 1.199 2003/08/13 08:46:30 markus Exp $");
+RCSID("$OpenBSD: ssh.c,v 1.200 2003/08/13 09:07:10 markus Exp $");
 
 #include <openssl/evp.h>
 #include <openssl/err.h>
@@ -445,7 +445,7 @@ again:
                                    optarg);
                                exit(1);
                        }
-                       add_local_forward(&options, fwd_port, "socks4", 0);
+                       add_local_forward(&options, fwd_port, "socks", 0);
                        break;
 
                case 'C':
This page took 0.294081 seconds and 5 git commands to generate.