mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-01-08 08:02:16 -05:00
ITS#8116 Fix handling of syncinfo intermediate message
This commit is contained in:
parent
c351616ccd
commit
c7ef49c8ce
1 changed files with 12 additions and 1 deletions
|
|
@ -1797,7 +1797,7 @@ static void print_syncinfo(
|
|||
ber_init2( syncinfo, data, 0 );
|
||||
|
||||
printf(_("# SyncInfo Received: "));
|
||||
tag = ber_skip_tag( syncinfo, &len );
|
||||
tag = ber_peek_tag( syncinfo, &len );
|
||||
switch (tag) {
|
||||
case LDAP_TAG_SYNC_NEW_COOKIE: {
|
||||
printf(_("new cookie\n"));
|
||||
|
|
@ -1821,7 +1821,11 @@ static void print_syncinfo(
|
|||
} break;
|
||||
case LDAP_TAG_SYNC_REFRESH_DELETE: {
|
||||
ber_int_t done = 1;
|
||||
|
||||
printf(_("refresh delete\n"));
|
||||
/* Skip sequence tag first */
|
||||
ber_skip_tag( syncinfo, &len );
|
||||
|
||||
tag = ber_peek_tag( syncinfo, &len );
|
||||
if ( tag == LDAP_TAG_SYNC_COOKIE ) {
|
||||
ber_scanf( syncinfo, "m", &cookie );
|
||||
|
|
@ -1852,7 +1856,11 @@ static void print_syncinfo(
|
|||
} break;
|
||||
case LDAP_TAG_SYNC_REFRESH_PRESENT: {
|
||||
ber_int_t done = 1;
|
||||
|
||||
printf(_("refresh present\n"));
|
||||
/* Skip sequence tag first */
|
||||
ber_skip_tag( syncinfo, &len );
|
||||
|
||||
tag = ber_peek_tag( syncinfo, &len );
|
||||
if ( tag == LDAP_TAG_SYNC_COOKIE ) {
|
||||
ber_scanf( syncinfo, "m", &cookie );
|
||||
|
|
@ -1886,6 +1894,9 @@ static void print_syncinfo(
|
|||
BerVarray uuids;
|
||||
|
||||
printf(_("ID Set\n"));
|
||||
/* Skip sequence tag first */
|
||||
ber_skip_tag( syncinfo, &len );
|
||||
|
||||
tag = ber_peek_tag( syncinfo, &len );
|
||||
if ( tag == LDAP_TAG_SYNC_COOKIE ) {
|
||||
ber_scanf( syncinfo, "m", &cookie );
|
||||
|
|
|
|||
Loading…
Reference in a new issue