mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-27 18:19:52 -05:00
Fix typos in last commit
This commit is contained in:
parent
486ad59260
commit
d773c7178f
1 changed files with 2 additions and 2 deletions
|
|
@ -112,7 +112,7 @@ int ldbm_initialize( const char* home )
|
|||
version = db_version( &major, &minor, &patch );
|
||||
|
||||
if( major != DB_VERSION_MAJOR ||
|
||||
minor >= DB_VERSION_MINOR )
|
||||
minor < DB_VERSION_MINOR )
|
||||
{
|
||||
#ifdef LDAP_SYSLOG
|
||||
char error[BUFSIZ];
|
||||
|
|
@ -120,7 +120,7 @@ int ldbm_initialize( const char* home )
|
|||
sprintf( error, "%s (%d)\n", STRERROR( err ), err );
|
||||
|
||||
syslog( LOG_INFO,
|
||||
"ldbm_initialize(): versoin mismatch\nexpected: %s\ngot: %s\n",
|
||||
"ldbm_initialize(): version mismatch\nexpected: %s\ngot: %s\n",
|
||||
DB_VERSION_STRING,
|
||||
version );
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Reference in a new issue