aboutsummaryrefslogtreecommitdiff
path: root/src/gdbmsync.c
diff options
context:
space:
mode:
authorSergey Poznyakoff <gray@gnu.org>2018-05-30 12:45:21 +0300
committerSergey Poznyakoff <gray@gnu.org>2018-05-30 12:45:21 +0300
commitb8d5da4c426b21ca0e56fc1cd6f75b49c0668e95 (patch)
tree26cbb1b04cd9febcdd37237c9576ea1c5eff3926 /src/gdbmsync.c
parenta14a6881538229cd938282bd56c7f0d12a089be6 (diff)
downloadgdbm-b8d5da4c426b21ca0e56fc1cd6f75b49c0668e95.tar.gz
gdbm-b8d5da4c426b21ca0e56fc1cd6f75b49c0668e95.tar.bz2
Namespace cleanup
Rename: __read to gdbm_file_read __write to gdbm_file_write __lseek to gdbm_file_seek __fsync to gdbm_file_sync
Diffstat (limited to 'src/gdbmsync.c')
-rw-r--r--src/gdbmsync.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gdbmsync.c b/src/gdbmsync.c
index 10fbaad..5d94cbe 100644
--- a/src/gdbmsync.c
+++ b/src/gdbmsync.c
@@ -25,15 +25,15 @@
/* Make sure the database is all on disk. */
void
gdbm_sync (GDBM_FILE dbf)
{
/* Return immediately if the database needs recovery */
GDBM_ASSERT_CONSISTENCY (dbf, );
/* Initialize the gdbm_errno variable. */
gdbm_set_errno (dbf, GDBM_NO_ERROR, FALSE);
/* Do the sync on the file. */
- __fsync (dbf);
+ gdbm_file_sync (dbf);
}

Return to:

Send suggestions and report system problems to the System administrator.