[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.298 and 1.299

version 1.298, 2016/10/24 01:09:17 version 1.299, 2016/11/06 05:46:37
Line 1314 
Line 1314 
                         if (options->num_allow_users >= MAX_ALLOW_USERS)                          if (options->num_allow_users >= MAX_ALLOW_USERS)
                                 fatal("%s line %d: too many allow users.",                                  fatal("%s line %d: too many allow users.",
                                     filename, linenum);                                      filename, linenum);
                           if (match_user(NULL, NULL, NULL, arg) == -1)
                                   fatal("%s line %d: invalid AllowUsers pattern: "
                                       "\"%.100s\"", filename, linenum, arg);
                         if (!*activep)                          if (!*activep)
                                 continue;                                  continue;
                         options->allow_users[options->num_allow_users++] =                          options->allow_users[options->num_allow_users++] =
Line 1326 
Line 1329 
                         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);
                           if (match_user(NULL, NULL, NULL, arg) == -1)
                                   fatal("%s line %d: invalid DenyUsers pattern: "
                                       "\"%.100s\"", filename, linenum, arg);
                         if (!*activep)                          if (!*activep)
                                 continue;                                  continue;
                         options->deny_users[options->num_deny_users++] =                          options->deny_users[options->num_deny_users++] =

Legend:
Removed from v.1.298  
changed lines
  Added in v.1.299