]> andersk Git - openssh.git/blobdiff - ssh.c
- stevesk@cvs.openbsd.org 2001/08/29 23:27:23
[openssh.git] / ssh.c
diff --git a/ssh.c b/ssh.c
index 4fcaaeae55146fc2ae7f3a1e096a40183ea9dbe7..d500e8493f1b6c703d98fcf17b5c1d25b9c1d24f 100644 (file)
--- a/ssh.c
+++ b/ssh.c
@@ -39,7 +39,7 @@
  */
 
 #include "includes.h"
-RCSID("$OpenBSD: ssh.c,v 1.140 2001/08/29 23:13:10 stevesk Exp $");
+RCSID("$OpenBSD: ssh.c,v 1.141 2001/08/29 23:27:23 stevesk Exp $");
 
 #include <openssl/evp.h>
 #include <openssl/err.h>
@@ -258,6 +258,7 @@ main(int ac, char **av)
 {
        int i, opt, exit_status, cerr;
        u_short fwd_port, fwd_host_port;
+       char sfwd_port[6], sfwd_host_port[6];
        char *p, *cp, buf[256];
        struct stat st;
        struct passwd *pw;
@@ -470,33 +471,31 @@ again:
                case 'l':
                        options.user = optarg;
                        break;
+
+               case 'L':
                case 'R':
-                       if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
-                           &fwd_host_port) != 3 &&
-                           sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
-                           &fwd_host_port) != 3) {
+                       if (sscanf(optarg, "%5[0-9]:%255[^:]:%5[0-9]",
+                           sfwd_port, buf, sfwd_host_port) != 3 &&
+                           sscanf(optarg, "%5[0-9]/%255[^/]/%5[0-9]",
+                           sfwd_port, buf, sfwd_host_port) != 3) {
                                fprintf(stderr,
-                                   "Bad forwarding specification '%s'.\n",
+                                   "Bad forwarding specification '%s'\n",
                                    optarg);
                                usage();
                                /* NOTREACHED */
                        }
-                       add_remote_forward(&options, fwd_port, buf,
-                            fwd_host_port);
-                       break;
-               case 'L':
-                       if (sscanf(optarg, "%hu/%255[^/]/%hu", &fwd_port, buf,
-                           &fwd_host_port) != 3 &&
-                           sscanf(optarg, "%hu:%255[^:]:%hu", &fwd_port, buf,
-                           &fwd_host_port) != 3) {
+                       if ((fwd_port = a2port(sfwd_port)) == 0 ||
+                           (fwd_host_port = a2port(sfwd_host_port)) == 0) {
                                fprintf(stderr,
-                                   "Bad forwarding specification '%s'.\n",
-                                   optarg);
-                               usage();
-                               /* NOTREACHED */
+                                   "Bad forwarding port(s) '%s'\n", optarg);
+                               exit(1);
                        }
-                       add_local_forward(&options, fwd_port, buf,
-                           fwd_host_port);
+                       if (opt == 'L')
+                               add_local_forward(&options, fwd_port, buf,
+                                   fwd_host_port);
+                       else if (opt == 'R')
+                               add_remote_forward(&options, fwd_port, buf,
+                                    fwd_host_port);
                        break;
 
                case 'D':
This page took 0.074307 seconds and 4 git commands to generate.