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

Diff for /src/usr.bin/ssh/misc.c between version 1.65 and 1.66

version 1.65, 2006/11/23 01:35:11 version 1.66, 2007/12/27 14:22:08
Line 35 
Line 35 
   
 #include <errno.h>  #include <errno.h>
 #include <fcntl.h>  #include <fcntl.h>
   #include <netdb.h>
 #include <paths.h>  #include <paths.h>
 #include <pwd.h>  #include <pwd.h>
 #include <stdarg.h>  #include <stdarg.h>
Line 111 
Line 112 
                 return (-1);                  return (-1);
         }          }
         return (0);          return (0);
   }
   
   const char *
   ssh_gai_strerror(int gaierr)
   {
           if (gaierr == EAI_SYSTEM)
                   return strerror(errno);
           return gai_strerror(gaierr);
 }  }
   
 /* disable nagle on socket */  /* disable nagle on socket */

Legend:
Removed from v.1.65  
changed lines
  Added in v.1.66