Skip to content
Snippets Groups Projects
Commit e5158d04 authored by Jan Včelák's avatar Jan Včelák :rocket:
Browse files

knotd: reset umask() when starting

parent f8c02bb4
No related branches found
No related tags found
No related merge requests found
......@@ -263,6 +263,9 @@ int main(int argc, char **argv)
}
}
/* Clear file creation mask. */
umask(0);
/* Setup base signal handling. */
setup_signals();
block_signals();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment