[BACK]Return to readconf.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / ssh

Diff for /src/usr.bin/ssh/readconf.c between version 1.174 and 1.175

version 1.174, 2009/01/15 17:38:43 version 1.175, 2009/01/22 10:02:34
Line 1274 
Line 1274 
         } else {          } else {
                 if (!(i == 3 || i == 4))                  if (!(i == 3 || i == 4))
                         goto fail_free;                          goto fail_free;
                 if (fwd->connect_port == 0)                  if (fwd->connect_port <= 0)
                         goto fail_free;                          goto fail_free;
         }          }
   
         if (fwd->listen_port == 0)          if (fwd->listen_port <= 0)
                 goto fail_free;                  goto fail_free;
   
         if (fwd->connect_host != NULL &&          if (fwd->connect_host != NULL &&

Legend:
Removed from v.1.174  
changed lines
  Added in v.1.175