From 7608722c11b941252155b883f27e83e6e0e2306a Mon Sep 17 00:00:00 2001 From: Sascha Wildner Date: Fri, 30 Dec 2016 15:46:56 +0100 Subject: [PATCH] chmod.c: Remove mention of POSIX in a comment. POSIX doesn't specify -h. Submitted-by: Sevan Janiyan Taken-from: NetBSD Dragonfly-bug: --- bin/chmod/chmod.c | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/bin/chmod/chmod.c b/bin/chmod/chmod.c index 8c0dc71f0c..f070de84b0 100644 --- a/bin/chmod/chmod.c +++ b/bin/chmod/chmod.c @@ -79,12 +79,11 @@ main(int argc, char *argv[]) break; case 'h': /* - * In System V (and probably POSIX.2) the -h option - * causes chmod to change the mode of the symbolic - * link. 4.4BSD's symbolic links didn't have modes, - * so it was an undocumented noop. In FreeBSD 3.0, - * lchmod(2) is introduced and this option does real - * work. + * In System V the -h option causes chmod to change the + * mode of the symbolic link. 4.4BSD's symbolic links + * didn't have modes, so it was an undocumented noop. + * In FreeBSD 3.0, lchmod(2) is introduced and this + * option does real work. */ hflag = 1; break; -- 2.11.4.GIT