[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.91 and 1.92

version 1.91, 2013/07/12 00:43:50 version 1.92, 2013/10/14 23:28:23
Line 35 
Line 35 
 #include <netinet/ip.h>  #include <netinet/ip.h>
 #include <netinet/tcp.h>  #include <netinet/tcp.h>
   
   #include <ctype.h>
 #include <errno.h>  #include <errno.h>
 #include <fcntl.h>  #include <fcntl.h>
 #include <netdb.h>  #include <netdb.h>
Line 986 
Line 987 
         }          }
         snprintf(iptos_str, sizeof iptos_str, "0x%02x", iptos);          snprintf(iptos_str, sizeof iptos_str, "0x%02x", iptos);
         return iptos_str;          return iptos_str;
   }
   
   void
   lowercase(char *s)
   {
           for (; *s; s++)
                   *s = tolower((u_char)*s);
 }  }

Legend:
Removed from v.1.91  
changed lines
  Added in v.1.92