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

Diff for /src/usr.bin/ssh/auth.c between version 1.38 and 1.39

version 1.38, 2002/03/18 03:41:08 version 1.39, 2002/03/19 10:49:35
Line 91 
Line 91 
         /* Return false if user is listed in DenyUsers */          /* Return false if user is listed in DenyUsers */
         if (options.num_deny_users > 0) {          if (options.num_deny_users > 0) {
                 for (i = 0; i < options.num_deny_users; i++)                  for (i = 0; i < options.num_deny_users; i++)
                         if (match_user(pw->pw_name, hostname, ipaddr,                          if (match_user(pw->pw_name, hostname, ipaddr,
                             options.deny_users[i])) {                              options.deny_users[i])) {
                                 log("User %.100s not allowed because listed in DenyUsers",                                  log("User %.100s not allowed because listed in DenyUsers",
                                     pw->pw_name);                                      pw->pw_name);
                                 return 0;                                  return 0;
                         }                          }
         }          }
         /* Return false if AllowUsers isn't empty and user isn't listed there */          /* Return false if AllowUsers isn't empty and user isn't listed there */
         if (options.num_allow_users > 0) {          if (options.num_allow_users > 0) {
                 for (i = 0; i < options.num_allow_users; i++)                  for (i = 0; i < options.num_allow_users; i++)
                         if (match_user(pw->pw_name, hostname, ipaddr,                          if (match_user(pw->pw_name, hostname, ipaddr,
                             options.allow_users[i]))                              options.allow_users[i]))
                                 break;                                  break;
                 /* i < options.num_allow_users iff we break for loop */                  /* i < options.num_allow_users iff we break for loop */

Legend:
Removed from v.1.38  
changed lines
  Added in v.1.39