| Commit message (Collapse) | Author | Age | Files | Lines |
| |
|
|
|
|
| |
Rescue can now be built for arm.
|
| |
|
| |
|
|
|
|
| |
This manpage needs an English clenup.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
Trim whitespace at EOL.
|
|
|
|
|
| |
Fixed grammar (missing punctuation).
Fixed screwup with the SEE ALSO section.
|
|
|
|
| |
fix some more.
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
MFC after: 16 days
|
|
|
|
|
|
|
|
| |
If specified, the matching log files will have the NODUMP flag set
on them after they are created.
Submitted by: Sean Eric Fagan
MFC after: 16 days
|
|
|
|
|
|
|
|
| |
that had been written some months ago for other processing. This
should get rid of a few subtle situations where an existing log
file would not exist (for a short time) while it is being rotated.
MFC after: 16 days
|
|
|
|
|
|
|
|
| |
does not know anything about the pid-file and we don't keep a babysitting
process for the task, the pid-file will linger.
Submitted by: mi
PR: 56398
|
| |
|
|
|
|
|
|
|
|
| |
(if requested) a chown is done on the "blah.log.0" file.
PR: bin/67137
Submitted by: jeh
MFC after: 10 days
|
|
|
|
|
|
| |
to "Since".
Pointed out by: Ceri
|
| |
|
| |
|
| |
|
|
|
|
| |
PR: 67365
|
|
|
|
|
|
| |
is set.
MFC after: 4 days
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
about the risks of enabling raw sockets in prisons.
Because raw sockets can be used to configure and interact
with various network subsystems, extra caution should be
used where privileged access to jails is given out to
untrusted parties. As such, by default this option is disabled.
A few others and I are currently auditing the kernel
source code to ensure that the use of raw sockets by
privledged prison users is safe.
Approved by: bmilekic (mentor)
|
|
|
|
|
|
|
| |
more friendly to postfix log messages.
PR: 50912
Submitted by: Stanislav Lapshansky <slapsh@slapsh.pp.ru>
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
explicitly fsynced after kernel messages are logged. This option
should be syntax compatible with a similar option in Linux syslogd.
I've made some small changes to Pekka's patch, hoepfully I haven't
goofed anything.
PR: 66790
Submitted by: Pekka Savola <pekkas@netcore.fi>
Obtained from: Martin Schulze's syslogd
MFC after: 1 month
|
|
|
|
| |
Approved by: das (mentor)
|
|
|
|
|
|
| |
change all files to __FBSDID.
Approved by: das (mentor)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
Syslogd should ensure that f_file is a valid file descriptor when
f_type is FILE, CONSOLE, TTY and for a PIPE where f_pid > 0. If the
descriptor is closed/invalid then the type should be set to UNUSED
or the pid should be set to 0.
To this end:
1) Don't close(f->f_file) if we can't send a message to a remote
host because the file descriptor used for remote logging is
stored in finet, not in f->f_file. f->f_file is probably
uninitialised, so I guess we usually end up closing fd 0.
2) Don't close PIPE file descriptors if they are invalid.
3) If the call to p_open fails, don't set the pid.
The OpenBSD patches in this area set f_file to -1 after the fd is
closed and then avoids calling close if f_file < 0. I haven't done
this, but it might be a good idea too.
Inspired by: PR 67139/OpenBSD
|
|
|
|
|
|
|
|
|
|
|
| |
1) Use strncpy on strings out of utmp.
2) Avoid running off the start of one string while removing white space.
(I've used slightly different code to OpenBSD here.)
3) Ignore trailing spaces in the priority.
PR: 67139
Submitted by: Xin LI <delphij@FreeBSD.org.cn>
Obtained from: OpenBSD
|
|
|
|
|
|
|
| |
too long, rather than silently truncating them.
PR: 67139
Inspired by: OpenBSD
|
|
|
|
|
|
|
|
|
|
|
|
| |
1) Don't check for getopt returning '?', we have a default case.
2) Check if the priority is LOG_KERN correctly - in practice
LOG_KERN is 0, so it makes no difference. OpenBSD fixed a
different nearby bug that we don't have 'cos our definition
of LOG_MAKEPRI is different to OpenBSD's.
Copy a comment from OpenBSD, observing that LOG_KERN is 0.
Inspired by PR: 67139
|
|
|
|
|
|
| |
PR: 67139
Submitted by: Xin LI <[3]delphij@FreeBSD.org.cn>
Obtained from: OpenBSD
|
|
|
|
|
|
|
|
|
| |
_PATH_DEV will never change. In the un-likely event that _PATH_DEV
should ever change, watch(8) would have broke because of a
mis-generated device name.
Approved by: bmilekic (mentor)
Pointed out by: Yvan Boily
|
|
|
|
|
|
|
|
|
| |
o getpwnam(3) returns NULL and does not set errno when the user does
not exist. Bail out with "no such user" instead of "Unknown error: 0".
PR: bin/67262
Submitted by: demon (-U flag)
MFC after: 3 weeks
|
| |
|
|
|
|
|
| |
definition of struct bb_function_info in libgcc2.c, it should be
an int, not a long.
|
|
|
|
| |
Approved by: das (mentor)
|
|
|
|
|
|
| |
trying to exclude the top end of the range since it should hurt to overlap
by 4 bytes in the off-chance the RSDP signature appears incorrectly at the
very top of our search space.
|