search for: pkey_deny_group

Displaying 1 result from an estimated 1 matches for "pkey_deny_group".

Did you mean: pkey_deny_groups
2002 Mar 28
1
[PATCH] Feature addition: user access control per auth method
...+ access.allow_users = options.pkey_allow_users; + access.num_deny_users = options.num_pkey_deny_users; + access.deny_users = options.pkey_deny_users; + access.num_allow_groups = options.num_pkey_allow_groups; + access.allow_groups = options.pkey_allow_groups; + access.num_deny_groups = options.num_pkey_deny_groups; + access.deny_groups = options.pkey_deny_groups; + + return auth_allowed_user(pw, access); +} + Index: servconf.c =================================================================== RCS file: /cvs/openssh/servconf.c,v retrieving revision 1.77 diff -u -r1.77 servconf.c --- servconf.c 5 Feb 2002 01...