mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-26 09:39:45 -05:00
meta_back_db_config: lutil_atou(version,) -> lutil_atoi
This commit is contained in:
parent
7a19d8855d
commit
d60b89c148
1 changed files with 1 additions and 1 deletions
|
|
@ -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 <version>\"\n",
|
||||
fname, lineno, argv[ 1 ] );
|
||||
|
|
|
|||
Loading…
Reference in a new issue