Skip to content
Snippets Groups Projects
Commit b6de12f5 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

revert constification of slap_init_user()

parent 78fe3a31
Branches
Tags
No related merge requests found
......@@ -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
/*
......
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment