diff options
Diffstat (limited to 'sesman/verify_user_kerberos.c')
-rw-r--r-- | sesman/verify_user_kerberos.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sesman/verify_user_kerberos.c b/sesman/verify_user_kerberos.c index bb7ba3d2..62d020a5 100644 --- a/sesman/verify_user_kerberos.c +++ b/sesman/verify_user_kerberos.c @@ -67,8 +67,8 @@ struct k5_data struct user_info { - char *name; - char *pass; + const char *name; + const char *pass; }; /******************************************************************************/ @@ -221,7 +221,7 @@ kinit_prompter(krb5_context ctx, void *data, const char *name, static int k5_kinit(struct k_opts *opts, struct k5_data *k5, struct user_info *u_info) { - char *doing; + const char *doing; int notix = 1; krb5_keytab keytab = 0; krb5_creds my_creds; @@ -396,7 +396,7 @@ cleanup: /******************************************************************************/ /* returns boolean */ int DEFAULT_CC -auth_userpass(char *user, char *pass, int *errorcode) +auth_userpass(const char *user, const char *pass, int *errorcode) { struct k_opts opts; struct k5_data k5; @@ -425,7 +425,7 @@ auth_userpass(char *user, char *pass, int *errorcode) /******************************************************************************/ /* returns error */ int DEFAULT_CC -auth_start_session(void) +auth_start_session(long in_val, int in_display) { return 0; } @@ -440,14 +440,14 @@ auth_stop_session(long in_val) /******************************************************************************/ int DEFAULT_CC -auth_end(void) +auth_end(long in_val) { return 0; } /******************************************************************************/ int DEFAULT_CC -auth_set_env(void) +auth_set_env(long in_val) { return 0; } |