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

Diff for /src/usr.bin/ssh/sshconnect.c between version 1.204 and 1.205

version 1.204, 2008/06/11 21:01:35 version 1.205, 2008/06/12 00:03:49
Line 208 
Line 208 
         hints.ai_socktype = ai->ai_socktype;          hints.ai_socktype = ai->ai_socktype;
         hints.ai_protocol = ai->ai_protocol;          hints.ai_protocol = ai->ai_protocol;
         hints.ai_flags = AI_PASSIVE;          hints.ai_flags = AI_PASSIVE;
         gaierr = getaddrinfo(options.bind_address, "0", &hints, &res);          gaierr = getaddrinfo(options.bind_address, NULL, &hints, &res);
         if (gaierr) {          if (gaierr) {
                 error("getaddrinfo: %s: %s", options.bind_address,                  error("getaddrinfo: %s: %s", options.bind_address,
                     ssh_gai_strerror(gaierr));                      ssh_gai_strerror(gaierr));

Legend:
Removed from v.1.204  
changed lines
  Added in v.1.205