aboutsummaryrefslogtreecommitdiff
path: root/src/gdbmexists.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gdbmexists.c')
-rw-r--r--src/gdbmexists.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gdbmexists.c b/src/gdbmexists.c
index 9bbd308..0d551c0 100644
--- a/src/gdbmexists.c
+++ b/src/gdbmexists.c
@@ -1,7 +1,7 @@
/* gdbmexists.c - Check to see if a key exists */
/* This file is part of GDBM, the GNU data base manager.
- Copyright (C) 1993, 2007, 2011, 2013 Free Software Foundation, Inc.
+ Copyright (C) 1993, 2007, 2011, 2013, 2016 Free Software Foundation, Inc.
GDBM is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
@@ -30,7 +30,7 @@ gdbm_exists (GDBM_FILE dbf, datum key)
if (_gdbm_findkey (dbf, key, NULL, NULL) < 0)
{
if (gdbm_errno == GDBM_ITEM_NOT_FOUND)
- gdbm_errno = GDBM_NO_ERROR;
+ gdbm_set_errno (dbf, GDBM_NO_ERROR, 0);
return 0;
}
return 1;

Return to:

Send suggestions and report system problems to the System administrator.