From: Michael Orlitzky Date: Fri, 2 Mar 2018 13:47:56 +0000 (-0500) Subject: src/libadacl.c: fix two comment typos. X-Git-Tag: v0.2.0~3 X-Git-Url: http://gitweb.michael.orlitzky.com/?p=apply-default-acl.git;a=commitdiff_plain;h=af1cf77f3c97730a0eb846f7c8f71d1d235c67ee src/libadacl.c: fix two comment typos. --- diff --git a/src/libadacl.c b/src/libadacl.c index 49628e7..5eec144 100644 --- a/src/libadacl.c +++ b/src/libadacl.c @@ -803,7 +803,7 @@ int apply_default_acl_ex(const char* path, } /* There's a good reason why we saved the ACL above, even though - * we're about tto read it back into memory and mess with it on the + * we're about to read it back into memory and mess with it on the * next line. The acl_copy_xattr() function is already a hack to let * us copy default ACLs without resorting to path names; we simply * have no way to read the parent's default ACL into memory using @@ -814,7 +814,7 @@ int apply_default_acl_ex(const char* path, */ /* Now we potentially need to mask the execute permissions in the - ACL on fd; or maybe now. */ + ACL on fd; or maybe not. */ if (allow_exec) { goto cleanup; }