diff options
author | Keith Bostic <keith@wiredtiger.com> | 2015-01-17 11:57:25 -0500 |
---|---|---|
committer | Keith Bostic <keith@wiredtiger.com> | 2015-01-17 11:57:25 -0500 |
commit | 010059e721d1c6bd4d81214ab80402866de41345 (patch) | |
tree | 042810796865ffbd7d9473b595dee3b41217956e /src/cursor/cur_std.c | |
parent | 6981b7ac2fa1b55219e2e40f3dd15a43f162aced (diff) | |
download | mongo-010059e721d1c6bd4d81214ab80402866de41345.tar.gz |
For now, just rename the WiredTiger function __wt_cursor_equals to be
__wt_cursor_equal. We'll do a better fix to avoid the problem in the
future, when we have a few minutes.
Diffstat (limited to 'src/cursor/cur_std.c')
-rw-r--r-- | src/cursor/cur_std.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cursor/cur_std.c b/src/cursor/cur_std.c index 858c6af6853..df38eb9e57d 100644 --- a/src/cursor/cur_std.c +++ b/src/cursor/cur_std.c @@ -480,11 +480,11 @@ __wt_cursor_close(WT_CURSOR *cursor) } /* - * __wt_cursor_equals -- + * __wt_cursor_equal -- * WT_CURSOR->equals default implementation. */ int -__wt_cursor_equals(WT_CURSOR *cursor, WT_CURSOR *other, int *equalp) +__wt_cursor_equal(WT_CURSOR *cursor, WT_CURSOR *other, int *equalp) { WT_DECL_RET; WT_SESSION_IMPL *session; |