aboutsummaryrefslogtreecommitdiffstats
path: root/src/mds.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2015-07-07 07:20:21 +0200
committerMattias Andrée <maandree@operamail.com>2015-07-07 07:20:21 +0200
commit7502ecfc0c7dbbd652c92e6a92305c0f0ce2fbf8 (patch)
treec2512076ed8836825b82acf29ddde266824af928 /src/mds.c
parentindicies (diff)
downloadmds-7502ecfc0c7dbbd652c92e6a92305c0f0ce2fbf8.tar.gz
mds-7502ecfc0c7dbbd652c92e6a92305c0f0ce2fbf8.tar.bz2
mds-7502ecfc0c7dbbd652c92e6a92305c0f0ce2fbf8.tar.xz
fix error where mode_t argument was not added when O_CREAT was used in open
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/mds.c')
-rw-r--r--src/mds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mds.c b/src/mds.c
index b6f6abb..cb39005 100644
--- a/src/mds.c
+++ b/src/mds.c
@@ -128,7 +128,7 @@ int main(int argc_, char** argv_)
{
xsnprintf(pathname, "%s/%u.pid", MDS_RUNTIME_ROOT_DIRECTORY, display);
- fd = open(pathname, O_CREAT | O_EXCL);
+ fd = open(pathname, O_CREAT | O_EXCL, 0644);
if (fd == -1)
{
/* Reuse display index if no longer used. */