From: Kurt Zeilenga Date: Tue, 13 Jul 1999 08:24:26 +0000 (+0000) Subject: Fix debug message. X-Git-Tag: OPENLDAP_REL_ENG_2_BP~163 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=12b87ceebcea8a42d392c0e47725b3af8cb91861;p=openldap Fix debug message. --- diff --git a/servers/slapd/user.c b/servers/slapd/user.c index 5412780c75..8f31b06cc5 100644 --- a/servers/slapd/user.c +++ b/servers/slapd/user.c @@ -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 ); }