From: Pierangelo Masarati Date: Thu, 15 May 2003 12:18:04 +0000 (+0000) Subject: remove unused arg from fprintf (ITS#2516) X-Git-Tag: OPENLDAP_REL_ENG_2_2_0ALPHA~123 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=64485f5fe08e88428be92a9a4c817107dbedb73b;p=openldap remove unused arg from fprintf (ITS#2516) --- diff --git a/servers/slapd/back-meta/config.c b/servers/slapd/back-meta/config.c index 664cbd5199..f404141cd6 100644 --- a/servers/slapd/back-meta/config.c +++ b/servers/slapd/back-meta/config.c @@ -197,8 +197,9 @@ meta_back_db_config( for ( tmpludp = ludp->lud_next; tmpludp; tmpludp = tmpludp->lud_next ) { if ( tmpludp->lud_dn != NULL && tmpludp->lud_dn[ 0 ] != '\0' ) { fprintf( stderr, "%s: line %d: " - "multiple URIs must have no DN part\n", - fname, lineno, argv[ 1 ] ); + "multiple URIs must have " + "no DN part\n", + fname, lineno ); return( 1 ); }