View | Details | Raw Unified | Return to bug 1000
Collapse All | Expand All

(-)openssh-4.0p1/readconf.c (-2 / +2 lines)
Lines 1109-1116 Link Here
1109
               break;
1109
               break;
1110
1110
1111
       case 4:
1111
       case 4:
1112
               fwd->listen_host = xstrdup(cleanhostname(fwdarg[0]));
1112
               fwd->listen_host = xstrdup(cleanhostname(fwdarg[1]));
1113
               fwd->listen_port = a2port(fwdarg[1]);
1113
               fwd->listen_port = a2port(fwdarg[0]);
1114
               fwd->connect_host = xstrdup(cleanhostname(fwdarg[2]));
1114
               fwd->connect_host = xstrdup(cleanhostname(fwdarg[2]));
1115
               fwd->connect_port = a2port(fwdarg[3]);
1115
               fwd->connect_port = a2port(fwdarg[3]);
1116
               break;
1116
               break;

Return to bug 1000