From 6b680bb89c05f4c67e78b927cab4231b647406d7 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Wed, 24 Jul 1996 06:14:51 +0000 Subject: minor cleanups (This used to be commit 7c8fd43b4e78f439406c3bb4478adf99ae17172f) --- source3/passdb/smbpass.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'source3/passdb') diff --git a/source3/passdb/smbpass.c b/source3/passdb/smbpass.c index 1f880881bc..cd4a7ccf66 100644 --- a/source3/passdb/smbpass.c +++ b/source3/passdb/smbpass.c @@ -58,8 +58,7 @@ do_pw_lock(int fd, int waitsecs, int type) return ret; } -int -pw_file_lock(char *name, int type, int secs) +int pw_file_lock(char *name, int type, int secs) { int fd = open(name, O_RDWR | O_CREAT, 0666); if (fd < 0) @@ -71,8 +70,7 @@ pw_file_lock(char *name, int type, int secs) return fd; } -int -pw_file_unlock(int fd) +int pw_file_unlock(int fd) { do_pw_lock(fd, 5, F_UNLCK); return close(fd); -- cgit