[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.139 and 1.140

version 1.139, 2005/03/10 22:01:05 version 1.140, 2005/05/16 15:30:51
Line 741 
Line 741 
   
         case oAddressFamily:          case oAddressFamily:
                 arg = strdelim(&s);                  arg = strdelim(&s);
                   if (!arg || *arg == '\0')
                           fatal("%s line %d: missing address family.",
                               filename, linenum);
                 intptr = &options->address_family;                  intptr = &options->address_family;
                 if (strcasecmp(arg, "inet") == 0)                  if (strcasecmp(arg, "inet") == 0)
                         value = AF_INET;                          value = AF_INET;

Legend:
Removed from v.1.139  
changed lines
  Added in v.1.140