X-Git-Url: http://git.samba.org/samba.git/?p=kai%2Fsamba.git;a=blobdiff_plain;f=source%2Fpassdb%2Fsmbpass.c;h=cd4a7ccf6643c819f592635604aaf00dfac10b41;hp=1f880881bc5aa0990659b05e3ef2bcf9b0c40555;hb=7c8fd43b4e78f439406c3bb4478adf99ae17172f;hpb=fabd4230f17726743a0fde0a37ce3c09a3dec8a3 diff --git a/source/passdb/smbpass.c b/source/passdb/smbpass.c index 1f880881bc5..cd4a7ccf664 100644 --- a/source/passdb/smbpass.c +++ b/source/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);