Skip to content
Snippets Groups Projects
Commit c673b651 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Set O_EXCL (ITS#2009)

parent d38d19ed
No related branches found
No related tags found
No related merge requests found
......@@ -63,7 +63,7 @@ write_reject(
if ( access( rejfile, F_OK ) < 0 ) {
/* Doesn't exist - try to create */
int rjfd;
if (( rjfd = open( rejfile, O_RDWR | O_APPEND | O_CREAT,
if (( rjfd = open( rejfile, O_RDWR|O_APPEND|O_CREAT|O_EXCL,
S_IRUSR | S_IWUSR | S_IRGRP | S_IWGRP )) < 0 ) {
#ifdef NEW_LOGGING
LDAP_LOG ( SLURPD, ERR, "write_reject: "
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment