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

ChangeLog
readconf.c
ssh.c

index b421d6ffdcd59cd74e03724ff6d7e60d42584809..2140b20c8405c500d8385a12b575871e27b046d6 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
  - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
    Report from murple@murple.net, diagnosis from dtucker@zip.com.au
 
-$Id: ChangeLog,v 1.2891 2003/08/13 10:37:05 dtucker Exp $
+$Id: ChangeLog,v 1.2892 2003/08/13 10:38:36 dtucker Exp $
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':