From aebcdfa659679e5a1f92a9ad12e7c36621962988 Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Tue, 2 Dec 2014 03:12:58 -0600 Subject: Switching on fortify was not kind to the pending directory. Fix the actual build break (open(O_CREAT) without permissions). --- toys/pending/dhcpd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'toys') diff --git a/toys/pending/dhcpd.c b/toys/pending/dhcpd.c index 7da51949..2f0c3a54 100644 --- a/toys/pending/dhcpd.c +++ b/toys/pending/dhcpd.c @@ -867,7 +867,7 @@ static int write_leasefile(void) struct arg_list *listdls = gstate.dleases; dyn_lease *dls; - if ((fd = open(gconfig.lease_file, O_WRONLY | O_CREAT | O_TRUNC)) < 0) { + if ((fd = open(gconfig.lease_file, O_WRONLY | O_CREAT | O_TRUNC, 0600)) < 0) { perror_msg("can't open %s ", gconfig.lease_file); return fd; } -- cgit v1.2.3