| Summary: | S_IRWXU missing in fstat(2) man page? | ||
|---|---|---|---|
| Product: | Documentation | Reporter: | Simon Barner <barner> |
| Component: | Books & Articles | Assignee: | ru <ru> |
| Status: | Closed FIXED | ||
| Severity: | Affects Only Me | ||
| Priority: | Normal | ||
| Version: | Latest | ||
| Hardware: | Any | ||
| OS: | Any | ||
State Changed From-To: open->patched Added S_IRWXU and permission bits for group/other to the stat(2) manpage. Responsible Changed From-To: freebsd-doc->ru ru 2006-10-12 13:35:07 UTC
FreeBSD src repository
Modified files:
lib/libc/sys stat.2
Log:
Document S_IRWXU and permission bits for group/other.
PR: docs/57153
MFC after: 3 days
Revision Changes Path
1.46 +11 -2 src/lib/libc/sys/stat.2
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
State Changed From-To: patched->closed Merged into RELENG_6. ru 2006-10-16 11:57:53 UTC
FreeBSD src repository
Modified files: (Branch: RELENG_6)
lib/libc/sys stat.2
Log:
MFC: Document S_IRWXU and permission bits for group/other.
PR: docs/57153
Approved by: re (hrs)
Revision Changes Path
1.42.2.1 +11 -2 src/lib/libc/sys/stat.2
_______________________________________________
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org"
|
Shouldn't the S_IRWXU constant from /usr/include/sys/stat.h also be mentioned in the fstat(2) man page (and possibly others) --> this one #define S_IRWXU 0000700 /* RWX mask for owner */ --> already there #define S_IRUSR 0000400 /* R for owner */ -"- #define S_IWUSR 0000200 /* W for owner */ -"- #define S_IXUSR 0000100 /* X for owner */ If you confirm this, I can prepare a patch. Fix: Add missing constants to man page. How-To-Repeat: Compare /usr/include/sys/stat.h and fstat(2)