1
0
mirror of https://github.com/openbsd/src.git synced 2025-01-10 06:47:55 -08:00

another open(path, 0)...

This commit is contained in:
deraadt 2015-11-10 15:29:11 +00:00
parent 574fb2a2db
commit 37753c2d3b

View File

@ -1,4 +1,4 @@
/* $OpenBSD: fortune.c,v 1.46 2015/11/10 14:56:50 deraadt Exp $ */
/* $OpenBSD: fortune.c,v 1.47 2015/11/10 15:29:11 deraadt Exp $ */
/* $NetBSD: fortune.c,v 1.8 1995/03/23 08:28:40 cgd Exp $ */
/*-
@ -962,7 +962,7 @@ open_fp(FILEDESC *fp)
void
open_dat(FILEDESC *fp)
{
if (fp->datfd < 0 && (fp->datfd = open(fp->datfile, 0)) < 0) {
if (fp->datfd < 0 && (fp->datfd = open(fp->datfile, O_RDONLY)) < 0) {
perror(fp->datfile);
exit(1);
}