diff options
author | mouring <mouring> | 2001-02-15 03:08:27 +0000 |
---|---|---|
committer | mouring <mouring> | 2001-02-15 03:08:27 +0000 |
commit | f878141f5f11b0d46961fa92efbab4a0a75b30d4 (patch) | |
tree | 97fe57fbdd3d6d0a88c7a46ec18ace7e70787991 /auth.h | |
parent | ea7e32e35b2d808cf84a3ac86afabe22dab2b106 (diff) | |
download | openssh-f878141f5f11b0d46961fa92efbab4a0a75b30d4.tar.gz |
- markus@cvs.openbsd.org 2001/02/12 16:16:23
[auth-passwd.c auth.c auth.h auth1.c auth2.c servconf.c servconf.h
ssh-keygen.c sshd.8]
PermitRootLogin={yes,without-password,forced-commands-only,no}
(before this change, root could login even if PermitRootLogin==no)
Diffstat (limited to 'auth.h')
-rw-r--r-- | auth.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -21,7 +21,7 @@ * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * - * $OpenBSD: auth.h,v 1.10 2001/01/21 19:05:43 markus Exp $ + * $OpenBSD: auth.h,v 1.11 2001/02/12 16:16:23 markus Exp $ */ #ifndef AUTH_H #define AUTH_H @@ -112,7 +112,7 @@ void do_authentication2(void); Authctxt *authctxt_new(void); void auth_log(Authctxt *authctxt, int authenticated, char *method, char *info); void userauth_reply(Authctxt *authctxt, int authenticated); -int auth_root_allowed(void); +int auth_root_allowed(char *method); int auth2_challenge(Authctxt *authctxt, char *devs); |