mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-29 11:09:34 -05:00
gdbm_nextkey() takes two arguments not one.
This commit is contained in:
parent
92e71b459b
commit
bbc2dfa105
1 changed files with 1 additions and 1 deletions
|
|
@ -458,7 +458,7 @@ ldbm_nextkey( LDBM ldbm, Datum key )
|
|||
{
|
||||
Datum d;
|
||||
LDBM_LOCK;
|
||||
d = gdbm_nextkey( ldbm );
|
||||
d = gdbm_nextkey( ldbm, key );
|
||||
LDBM_UNLOCK;
|
||||
return d;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue