From ccf3ab5b5c5404718c08e405720a2a77a724606b Mon Sep 17 00:00:00 2001 From: Stephane Bortzmeyer Date: Tue, 15 Jun 2004 15:19:05 +0000 Subject: [PATCH] Small bug in error message --- SRC/plugins/ldap/ldap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SRC/plugins/ldap/ldap.c b/SRC/plugins/ldap/ldap.c index 58d0bb7..147a68f 100644 --- a/SRC/plugins/ldap/ldap.c +++ b/SRC/plugins/ldap/ldap.c @@ -80,7 +80,7 @@ init (const int argc, const char **argv, else if (!strcmp (scope_string, "ONE")) scope = LDAP_SCOPE_ONELEVEL; else - err_quit ("Invalid scope \"%s\"", scope); + err_quit ("Invalid scope \"%s\"", scope_string); } return "ldap"; }