mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-20 22:59:34 -05:00
ITS#6345: Fix tester_ignore_err() cut&paste error (negative array index)
This commit is contained in:
parent
068cf1c701
commit
0d5ac22a2f
1 changed files with 1 additions and 1 deletions
|
|
@ -209,7 +209,7 @@ tester_ignore_err( int err )
|
||||||
ignore_client[ -err ]++;
|
ignore_client[ -err ]++;
|
||||||
|
|
||||||
} else if ( rc < 0 ) {
|
} else if ( rc < 0 ) {
|
||||||
ignore_server[ err ]--;
|
ignore_client[ -err ]--;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue