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

Diff for /src/usr.bin/ssh/servconf.c between version 1.162 and 1.163

version 1.162, 2006/08/01 23:22:47 version 1.163, 2006/08/01 23:36:12
Line 920 
Line 920 
         case sDenyUsers:          case sDenyUsers:
                 while ((arg = strdelim(&cp)) && *arg != '\0') {                  while ((arg = strdelim(&cp)) && *arg != '\0') {
                         if (options->num_deny_users >= MAX_DENY_USERS)                          if (options->num_deny_users >= MAX_DENY_USERS)
                                 fatal( "%s line %d: too many deny users.",                                  fatal("%s line %d: too many deny users.",
                                     filename, linenum);                                      filename, linenum);
                         options->deny_users[options->num_deny_users++] =                          options->deny_users[options->num_deny_users++] =
                             xstrdup(arg);                              xstrdup(arg);
Line 1055 
Line 1055 
          */           */
         case sAuthorizedKeysFile:          case sAuthorizedKeysFile:
         case sAuthorizedKeysFile2:          case sAuthorizedKeysFile2:
                 charptr = (opcode == sAuthorizedKeysFile ) ?                  charptr = (opcode == sAuthorizedKeysFile) ?
                     &options->authorized_keys_file :                      &options->authorized_keys_file :
                     &options->authorized_keys_file2;                      &options->authorized_keys_file2;
                 goto parse_filename;                  goto parse_filename;

Legend:
Removed from v.1.162  
changed lines
  Added in v.1.163