Constify password

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@16044 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2005-09-08 11:30:53 +00:00
parent 6d0ecf1803
commit ee050659b1
5 changed files with 8 additions and 8 deletions

View File

@@ -40,7 +40,7 @@ RCSID("$Id$");
kadm5_ret_t
kadm5_chpass_principal(void *server_handle,
krb5_principal princ,
char *password)
const char *password)
{
return __CALL(chpass_principal, (server_handle, princ, password));
}
@@ -59,7 +59,7 @@ kadm5_ret_t
kadm5_create_principal(void *server_handle,
kadm5_principal_ent_t princ,
u_int32_t mask,
char *password)
const char *password)
{
return __CALL(create_principal, (server_handle, princ, mask, password));
}