| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
| |
due to bugs in OpenSSL headers. I was testing in the wrong
environmement: standalone build without crypto/ sources.
|
|
|
|
| |
Submitted by: Marius Strobl <marius@alchemy.franken.de>
|
|
|
|
|
|
|
|
| |
ACL that generated the error, rather than the function, which is
more user-friendly.
Obtained from: TrustedBSD Project
Product of: France
|
| |
|
|
|
|
|
|
| |
PR: 54294
Submitted by: Per Hedeland <per@hedeland.org>
MFC after: 3 days
|
|
|
|
| |
MAINTAINER file (which already had entries for sendmail).
|
|
|
|
|
|
|
|
|
|
|
| |
- Removed dead declarations
- Made objects that should have been declared as static, static.
The changes use STATIC instead of static, following the existing
convention in the rest of the code.
Approved by: schweikh (mentor)
MFC after: 2 weeks
|
|
|
|
| |
function.
|
|
|
|
| |
Submitted by: Jun Kuriyama
|
|
|
|
|
|
| |
path fixes.
Submitted by: Tim Kientzle <kientzle@acm.org>
|
|
|
|
| |
Reviewed by: markm
|
|
|
|
|
|
|
|
| |
also fix a slight bogon that assumed an fd of 0 was not valid. Changed
it to be -1.
PR: bin/25017
Submitted by: Martin Kammerhofer
|
|
|
|
|
|
|
| |
Obsolete WFORMAT= junk also removed where possible.
OK'ed by: obrien
Tested on: sparc64, alpha, i386
|
|
|
|
|
| |
process. The default behavior of showing only the process is retained as
the default.
|
| |
|
|
|
|
| |
Reported by: Marius Strobl <marius@alchemy.franken.de>
|
|
|
|
|
|
| |
Prodded by: marcel
While here, spell the "set-{user,group}-ID bit" correctly.
|
|
|
|
|
|
|
|
|
| |
cat ${.ALLSRC} > ${.TARGET}
rather than
ln -sf ${.ALLSRC} ${.TARGET}
not to depends on absolute-path of symbolic links.
Commented by: marcel, obrien, bde
|
|
|
|
| |
Reviewed by: markm
|
|
|
|
| |
since it has been fixed.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
is a style bug at best. When the variable isn't a flag, it potentially
overflows after a large number of settings. Here the number of settings
is limited by ARG_MAX, but the variable is the exit code so it became
bogus after the second setting and effectively overflowed to 0 after
approx. 128 settings.
Fixed some style bugs involving comments in and near previous commit.
Clarification of previous commit message: df -t didn't give undefined
behaviour, and the behaviour used to conform perfectly with the man
page, since the buggy behaviour is documented in the BUGS section. -t
just worked when no files or file systems were specified, and was just
ignored if a file or file system was specified.
|
|
|
|
|
|
|
|
|
|
| |
-t Only print out statistics for filesystems of the specified types.
Make the behavior of df(1) conform to its man page (behavior is otherwise
undefined).
Submitted by: Rob Braun <bbraun@apple.com>
Obtained from: Apple
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
output buffer, don't insert them at all. This prevents a buffer
*underrun* when the substitution consists completely of newlines
(e.g. `echo`) and the byte before the source buffer to which p
points is a '\n', in which case more characters would be removed
from the output buffer than were inserted.
This fixes certain port builds on sparc64.
Approved by: re (scottl)
Reviewed by: des, tjr
|
|
|
|
| |
Approved by: re (blanket)
|
|
|
|
| |
Approved by: re (scottl)
|
|
|
|
| |
Approved by: re (blanket)
|
|
|
|
| |
Approved by: re (blanket)
|
|
|
|
|
| |
Approved by: re@ (bmah)
MFC after: 3 days
|
|
|
|
|
| |
PR: 35523
Submitted by: Tomas Svensson <tsn@gbdev.net>
|
|
|
|
| |
Submitted by: Tim Kientzle <kientzle@acm.org> (embellished by me)
|
|
|
|
| |
Tested by: Joe Marcus Clarke <marcus@marcuscom.com>
|
|
|
|
| |
explanation of `collating elements'.
|
|
|
|
|
|
| |
WARNS=6, std=c99 clean.
Tested on: i386, alpha
|
|
|
|
|
| |
solicits a warning when used for the '*' in printf("%*d"). Cast
to u_int for universal use.
|
|
|
|
| |
and lint. This is now WARNS=9, std=c99 clean on i386.
|
| |
|
|
|
|
|
| |
Use return(0) for main() instead of exit(0). Makes it a
wee bit smaller.
|
|
|
|
| |
sized/unsigned comparisons.
|
| |
|
|
|
|
|
|
| |
Due to the use of signed vs. unsigned chars on our various platforms, one gets
"warning: comparison is always true due to limited range of data type"
from GCC 3.3.
|
|
|
|
| |
to properly fix.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
| |
PR: docs/51480 (only a small part)
Submitted by: Diomidis D. Spinellis <dds@aueb.gr>
|
| |
|
|
|
|
|
|
|
| |
scripts parsing ls(1) output can still count columns.
Obtained from: TrustedBSD Project
Sponsored by: DARPA, Network Associates Laboratories
|