From: Hallvard Furuseth Date: Thu, 13 Apr 2006 22:23:03 +0000 (+0000) Subject: meta_back_db_config: lutil_atou(version,) -> lutil_atoi X-Git-Tag: OPENLDAP_REL_ENG_2_4_0ALPHA~3^2~6 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d60b89c148db6a244c588ec801acf9b345483da0;p=openldap meta_back_db_config: lutil_atou(version,) -> lutil_atoi --- diff --git a/servers/slapd/back-meta/config.c b/servers/slapd/back-meta/config.c index 1f0afe0a0d..822a352a4c 100644 --- a/servers/slapd/back-meta/config.c +++ b/servers/slapd/back-meta/config.c @@ -1062,7 +1062,7 @@ meta_back_db_config( return 1; } - if ( lutil_atou( version, argv[ 1 ] ) != 0 ) { + if ( lutil_atoi( version, argv[ 1 ] ) != 0 ) { Debug( LDAP_DEBUG_ANY, "%s: line %d: unable to parse version \"%s\" in \"protocol-version \"\n", fname, lineno, argv[ 1 ] );