revert constification of slap_init_user()

This commit is contained in:
Kurt Zeilenga 2002-01-29 19:01:15 +00:00
parent 78fe3a311f
commit b6de12f552
2 changed files with 2 additions and 3 deletions

View File

@ -938,8 +938,7 @@ LDAP_SLAPD_F (int) syn_schema_info( Entry *e );
* user.c
*/
#if defined(HAVE_PWD_H) && defined(HAVE_GRP_H)
LDAP_SLAPD_F (void) slap_init_user LDAP_P((
const char *username, const char *groupname ));
LDAP_SLAPD_F (void) slap_init_user LDAP_P(( char *username, char *groupname ));
#endif
/*

View File

@ -41,7 +41,7 @@
*/
void
slap_init_user( const char *user, const char *group )
slap_init_user( char *user, char *group )
{
uid_t uid = 0;
gid_t gid = 0;