From: Jim Meyering Date: Mon, 26 Apr 1999 13:25:08 +0000 (+0000) Subject: (utime_null): Don't pass 0666 to open; it's not needed and isn't X-Git-Tag: SH-UTILS-1_16h~30 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bc2e8cb6ce1227099a306c0894cec5bca0d134d9;p=thirdparty%2Fcoreutils.git (utime_null): Don't pass 0666 to open; it's not needed and isn't guaranteed to be portable. --- diff --git a/lib/utime.c b/lib/utime.c index 557444c0d3..8e6c37d64e 100644 --- a/lib/utime.c +++ b/lib/utime.c @@ -54,7 +54,7 @@ utime_null (const char *file) int status = 0; struct stat sb; - fd = open (file, O_RDWR, 0666); + fd = open (file, O_RDWR); if (fd < 0 || fstat (fd, &sb) < 0 || safe_read (fd, &c, sizeof (char)) < 0