mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-28 01:29:18 -05:00
ITS#2729 fix typos
This commit is contained in:
parent
04cecc7666
commit
1881ae872f
2 changed files with 2 additions and 2 deletions
|
|
@ -67,7 +67,7 @@ int ldap_int_sasl_init( void )
|
|||
if ( ((rc >> 16) != ((SASL_VERSION_MAJOR << 8)|SASL_VERSION_MINOR)) ||
|
||||
(rc & 0xffff) < SASL_VERSION_STEP) {
|
||||
char version[sizeof("xxx.xxx.xxxxx")];
|
||||
sprintf( version, "%d.%d.%d", rc >> 24, rc >> 16 * 0xff,
|
||||
sprintf( version, "%u.%d.%d", (unsigned)rc >> 24, (rc >> 16) & 0xff,
|
||||
rc & 0xffff );
|
||||
|
||||
#ifdef NEW_LOGGING
|
||||
|
|
|
|||
|
|
@ -975,7 +975,7 @@ int slap_sasl_init( void )
|
|||
if ( ((rc >> 16) != ((SASL_VERSION_MAJOR << 8)|SASL_VERSION_MINOR)) ||
|
||||
(rc & 0xffff) < SASL_VERSION_STEP) {
|
||||
char version[sizeof("xxx.xxx.xxxxx")];
|
||||
sprintf( version, "%d.%d.%d", rc >> 24, rc >> 16 & 0xff,
|
||||
sprintf( version, "%u.%d.%d", (unsigned)rc >> 24, (rc >> 16) & 0xff,
|
||||
rc & 0xffff );
|
||||
#ifdef NEW_LOGGING
|
||||
LDAP_LOG( TRANSPORT, INFO,
|
||||
|
|
|
|||
Loading…
Reference in a new issue