| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Add FreeBSD Id tag where missing.
|
|
|
|
|
| |
It makes a difference on 64-bit arches, and no one really wants a 2^64
block size [yet].
|
| |
|
|
|
|
|
|
|
|
|
| |
a pointer and lack a prototype will have the return value (assumed
to be an integer) zero-extended to a pointer. On ia64 this is
unconditionally fatal as it zeroes-out the region bits, forming an
invalid pointer. Fix the sigsegv by including <stdlib.h>.
Pointy hat: bbraun
|
|
|
|
|
|
| |
Update copyrights.
Obtained from: TrustedBSD Project
|
|
|
|
|
|
|
|
| |
- Update BUGS: this stuff is implemented.
- Update last modified date.
- Document acl_set_link_np() call.
Obtained from: TrustedBSD Project
|
|
|
|
|
|
|
|
|
|
| |
- Updated copyrights, modified dates
- Remove "BUGS" entry indicating that ACLs are unimplemented
- Implement acl_*_link() library wrapper variants for get, set,
delete, aclvalid.
- Document acl_*_link() calls.
Obtained from: TrustedBSD Project
|
| |
|
|
|
|
| |
Submitted by: Craig Rodrigues <rodrigc@attbi.com>
|
| |
|
|
|
|
|
| |
Make cgetmatch's locals const.
Make cdbget take a const string and copy it into a buffer.
|
| |
|
|
|
|
| |
not yet inplemented and to clear up some wording.
|
| |
|
| |
|
|
|
|
|
|
|
|
| |
devices that is not inserted any media.
This is MFC candidate.
Submitted by: ISAKA Yoji <isaka@cory.jp>
|
|
|
|
|
|
|
| |
which perform shell-style word expansion on strings. This is still a
little rough around the edges.
PR: 13420
|
| |
|
| |
|
|
|
|
|
| |
PR: 46252
Submitted by: Jeroen Ruigrok van der Werven <asmodai@wxs.nl>
|
|
|
|
| |
PR: docs/37176
|
| |
|
|
|
|
| |
Approved by: re (rwatson)
|
|
|
|
|
|
|
| |
cast (casting long to a void pointer, rather than intptr_t to a
void pointer) bogons.
Reviewed by: bde
|
|
|
|
|
|
| |
by setproctitle().
Reviewed by: jkh
|
|
|
|
|
| |
by basename() and dirname().
Reviewed by: eric
|
|
|
|
|
|
| |
the -fpcc-struct-return calling convention properly instead of
returning garbage. This may break backwards compatibility with some old
binaries that were compiled when -fno-pcc-struct-return was the default.
|
|
|
|
|
|
|
| |
values (EOF in our case) on error, and some of the possible errno values
in an Errors section.
PR: 39257
|
|
|
|
| |
section to reflect this.
|
|
|
|
|
|
|
|
|
|
|
| |
o Fix an English error (comma splice) and poorly worded sentence.
o Fix KNF ordering of variables (pointers come before arithmetic types).
o Restore hand-optimization of sizeof()-1, instead of strlen().
o Remove unneeded local variables in strerror_r().
Test by: strerror regression test
Requested by: bde
Reviewed by: bde
|
|
|
|
|
| |
PR: 43357
Submitted by: David Schultz <dschultz@uclink.Berkeley.EDU>
|
|
|
|
|
|
| |
contiguous chunks of memory. It happens to do so in the bootstrap
code, but not necessarily in other places.
MFC after: 7 days
|
|
|
|
| |
MFC after: 1 day
|
| |
|
|
|
|
|
|
| |
and sendto() cancelation points, as required by POSIX.1-2001.
Reviewed by: deischen
|
|
|
|
| |
C99 now that all known standards-related bugs have been fixed.
|
|
|
|
| |
writes to the correct stream if stderr has been redirected with freopen().
|
|
|
|
|
|
|
|
| |
buffer does not get clobbered.
ISO/IEC 9899:1999 7.21.6.2 3:
"The implementation shall behave as if no library function calls the
strerror function."
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
strerror_r(). Doing this allows us to ensure that strerror_r() always
fills the supplied buffer regardless of EINVAL or ERANGE errors.
strerror()'s semantics have changed slightly such that an argument of
0 is now considered invalid and errno is set to EINVAL.
Remove internal regression test for strerror() and strerror_r(). This
will be reincarnated in src/tools/regression/lib/libc/string.
In strerror(3), add a comment about strerror()'s bogus return type.
PR: 44356
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
Stop calling system calls "function calls".
Use "The .Fn system call" a-la "The .Nm utility".
When referring to a non-BSD implementation in
the HISTORY section, call syscall a function,
to be safe.
|
|
|
|
|
|
|
|
| |
conversion specifications to completely specify the resulting struct tm.
PR: 46331
Submitted by: Christian S.J. Peron
MFC after: 2 weeks
|