diff options
| author | Lorry Tar Creator <lorry-tar-importer@baserock.org> | 2015-02-17 17:25:57 +0000 |
|---|---|---|
| committer | <> | 2015-03-17 16:26:24 +0000 |
| commit | 780b92ada9afcf1d58085a83a0b9e6bc982203d1 (patch) | |
| tree | 598f8b9fa431b228d29897e798de4ac0c1d3d970 /src/hash/hash_method.c | |
| parent | 7a2660ba9cc2dc03a69ddfcfd95369395cc87444 (diff) | |
| download | berkeleydb-master.tar.gz | |
Diffstat (limited to 'src/hash/hash_method.c')
| -rw-r--r-- | src/hash/hash_method.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/hash/hash_method.c b/src/hash/hash_method.c index 1da81e70..a05bcea6 100644 --- a/src/hash/hash_method.c +++ b/src/hash/hash_method.c @@ -1,7 +1,7 @@ /*- * See the file LICENSE for redistribution information. * - * Copyright (c) 1999, 2012 Oracle and/or its affiliates. All rights reserved. + * Copyright (c) 1999, 2015 Oracle and/or its affiliates. All rights reserved. * * $Id$ */ @@ -20,7 +20,7 @@ static int __ham_set_h_hash static int __ham_set_h_nelem __P((DB *, u_int32_t)); static int __ham_get_h_compare - __P((DB *, int (**)(DB *, const DBT *, const DBT *))); + __P((DB *, int (**)(DB *, const DBT *, const DBT *, size_t *))); /* * __ham_db_create -- @@ -153,7 +153,7 @@ __ham_set_h_hash(dbp, func) static int __ham_get_h_compare(dbp, funcp) DB *dbp; - int (**funcp) __P((DB *, const DBT *, const DBT *)); + int (**funcp) __P((DB *, const DBT *, const DBT *, size_t *)); { HASH *t; @@ -170,13 +170,13 @@ __ham_get_h_compare(dbp, funcp) * __ham_set_h_compare -- * Set the comparison function. * - * PUBLIC: int __ham_set_h_compare - * PUBLIC: __P((DB *, int (*)(DB *, const DBT *, const DBT *))); + * PUBLIC: int __ham_set_h_compare __P((DB *, + * PUBLIC: int (*)(DB *, const DBT *, const DBT *, size_t *))); */ int __ham_set_h_compare(dbp, func) DB *dbp; - int (*func) __P((DB *, const DBT *, const DBT *)); + int (*func) __P((DB *, const DBT *, const DBT *, size_t *)); { HASH *t; |
