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

Fix debug message.

parent 5f880ae0
No related branches found
No related tags found
No related merge requests found
......@@ -121,13 +121,13 @@ slap_init_user( char *user, char *group )
if ( uid > 0 ) {
if ( setuid( uid ) != 0 ) {
Debug( LDAP_DEBUG_ANY, "Could not set effective user id to %d\n",
Debug( LDAP_DEBUG_ANY, "Could not set real user id to %d\n",
uid, 0, 0 );
exit( 1 );
}
#ifdef HAVE_SETEUID
if ( seteuid( uid ) != 0 ) {
Debug( LDAP_DEBUG_ANY, "Could not set real user id to %d\n",
Debug( LDAP_DEBUG_ANY, "Could not set effective user id to %d\n",
uid, 0, 0 );
exit( 1 );
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment