From 0e2fccc73804cce6f4106f97dbb336800a4e08bd Mon Sep 17 00:00:00 2001 From: Assar Westerlund Date: Mon, 25 Nov 1996 23:22:01 +0000 Subject: [PATCH] Declare AUTH_NONE, AUTH_OTP, and auth_level. git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1075 ec53bebd-3082-4978-b11e-865c3cabbd6b --- appl/popper/popper.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/appl/popper/popper.h b/appl/popper/popper.h index 5711e1ef1..d86d3599e 100644 --- a/appl/popper/popper.h +++ b/appl/popper/popper.h @@ -153,6 +153,9 @@ extern int pop_timeout; extern int hangup; +#define AUTH_NONE 0 +#define AUTH_OTP 1 + #define pop_command pop_parm[0] /* POP command is first token */ #define pop_subcommand pop_parm[1] /* POP XTND subcommand is the second token */ @@ -230,7 +233,7 @@ typedef struct { /* POP parameter block */ #ifdef KERBEROS AUTH_DAT kdata; #endif - int no_passwd; /* Dont allow cleartext */ + int auth_level; /* Dont allow cleartext */ OtpContext otp_ctx; /* OTP context */ } POP;