From: Michael Orlitzky Date: Fri, 2 Mar 2018 16:51:53 +0000 (-0500) Subject: src/libadacl.c: delete an outdated comment. X-Git-Tag: v0.3.0~10 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=apply-default-acl.git;a=commitdiff_plain;h=bd6889a6483bc13a05b36a4d8e37834bd50f2941 src/libadacl.c: delete an outdated comment. --- diff --git a/src/libadacl.c b/src/libadacl.c index 2c28945..e83f46b 100644 --- a/src/libadacl.c +++ b/src/libadacl.c @@ -731,9 +731,6 @@ int apply_default_acl(const char* path, bool no_exec_mask) { * race condition here, but the window is as small as possible * between when we open the file descriptor (look above) and when we * fstat it. - * - * Note: we only need to call fstat ourselves if we weren't passed a - * valid pointer to a stat structure (nftw does that). */ struct stat s; if (fstat(fd, &s) == STAT_ERROR) {