]> git.sur5r.net Git - openldap/commitdiff
gdbm_nextkey() takes two arguments not one.
authorKurt Zeilenga <kurt@openldap.org>
Tue, 2 Feb 1999 20:36:10 +0000 (20:36 +0000)
committerKurt Zeilenga <kurt@openldap.org>
Tue, 2 Feb 1999 20:36:10 +0000 (20:36 +0000)
libraries/libldbm/ldbm.c

index ae0836c766227c7ff916febd5d00234cc8cb182d..9d56d5bc680385a8aa3e65944e4f9291ce67dbe5 100644 (file)
@@ -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;
 }