]> git.sur5r.net Git - openldap/commitdiff
Fix debug message.
authorKurt Zeilenga <kurt@openldap.org>
Tue, 13 Jul 1999 08:24:26 +0000 (08:24 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Tue, 13 Jul 1999 08:24:26 +0000 (08:24 +0000)
servers/slapd/user.c

index 5412780c754a120badabd229f4a88cab251d302c..8f31b06cc5185c0768439a82aa571f15824115fe 100644 (file)
@@ -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 );
        }