]> git.decadent.org.uk Git - nfs-utils.git/blobdiff - support/nfs/xio.c
nfs-utils: specify a create mode with open(...O_CREAT) call in xflock
[nfs-utils.git] / support / nfs / xio.c
index 221cce6ef2babdf35d96330e6399dd5d35679a3f..0453ca7c0ba305122ff5353267659336fd16f9ab 100644 (file)
@@ -57,7 +57,7 @@ xflock(char *fname, char *type)
        struct flock    fl = { readonly? F_RDLCK : F_WRLCK, SEEK_SET, 0, 0, 0 };
        int             fd;
 
-       if ((fd = open(fname, readonly? O_RDONLY : (O_RDWR|O_CREAT))) < 0) {
+       if ((fd = open(fname, readonly? O_RDONLY : (O_RDWR|O_CREAT), 0644)) < 0) {
                xlog(L_WARNING, "could not open %s for locking", fname);
                return -1;
        }