Age | Commit message (Collapse) | Author |
|
ok deraadt@
|
|
of memory and can't do anything else. This way we don't terminate on
config reload with a bad config.
ok florian@
|
|
|
|
the -A and -B options are used. From Andy Bradford.
|
|
The problem is caused by the special handling of Friday, where calendar will
show the upcoming events for the weeked as well. This change disables the
special handling of Friday for the -B option, as was already done for -A.
From Andy Bradford.
|
|
file.
Prodded by deraadt
|
|
|
|
otto@ pointed out that we lost a description on HOW to use macros.
|
|
If it comes from one of our processes and the size does not match what
we expect call fatalx to crash and burn. We either hit a logic bug or
something is fishy on the other end and we can't trust that process
any longer. Not that we trust those processes to begin with.
This also applies to receiving resources that we don't expect. For
example if we have an open UDP listen socket and get a new one passed
from the main process something is wrong and we should crash and burn.
The only place where we are more lenient is on the control socket. We
just ignore wrong sized messages so that users can't bring down
unwind.
|
|
ok florian@
|
|
on the console.
Issue reported by deraadt@.
ok deraadt@, mpi@
|
|
- Do checks that do not access shared data structures first, they don't
need locking and save us some dances.
- Use the common !ETHER_IS_MULTICAST() idiom and move some code that won't
be executed if the bridge(4) is down.
ok bluhm@, visa@
|
|
from Carlos Cardenas; OK mlarkin@
|
|
This is the lib/builtin directory of the compiler-rt source tarball.
comments/ok patrick@, ok kettenis@
|
|
implementations.
ok pirofti@
|
|
|
|
dereferencing it.
ok kettenis@, visa@
|
|
ok kettenis@, visa@
|
|
From Brad
|
|
move the check of existing "account ..." line from main.c to the parser.
ok deraadt@
|
|
pointed out by deraadt
|
|
ok sunil@
|
|
pointed out by deraadt
|
|
call OPENSSL_assert() with the specific message, which due to recent
changes will end up syslog :)
ok jsing
|
|
The new node contains the subsystem's main control variable,
kern.witness.watch. It is aliased by the old name, kern.witnesswatch.
The alias will be removed in the future.
OK anton@ mpi@
|
|
Recently introduced in pfctl_parser.c r1.333, this helper nicely
simplifies code when copying IPs based on their address family, so use
it in five other places when killing state or source node entries.
All addresses copied in these code paths result from either
pfctl_parse_host() or pfctl_addrprefix() which guarantee the address
family set to AF_INET or AF_INET6. Therefore, effectively relaxing the
case of unhandled families from errx(3) in callers to warnx(3) in
copy_satopfaddr() is safe since it's never reached.
OK sashan
|
|
ok florian@
|
|
from code and manual in 2017).
Reported by KEINOS in github issue #101.
|
|
lib/libedit/chartype.c via FreeBSD. From tj@
ok tb
|
|
Based on a diff from Jesper Wallin.
ok jmatthew@, stsp@
|
|
Either disable DNS or enable additional reverse lookups, but not both.
OK benno
|
|
|
|
|
|
|
|
ok deraadt@ jmatthew@
|
|
suggested by jmatthew@
|
|
ok jmatthew@
|
|
ok patrick@
|
|
|
|
permitted.
|
|
Not standard, but supported at least by GNU cp, IllumOS, NetBSD,
FreeBSD, DragonflyBSD. No need to be gratuitously different. This
should also allow us to drop patches in ~10 ports.
Based on an initial diff by benno@ with input from sthen@ and jmc@
ok benno@ danj@ sthen@ martijn@ deraadt@
|
|
OK deraadt@
|
|
ok deraadt@
|
|
ok tb@
|
|
has been seen in the handshake so far. Use it for keyshare.
ok tb@
|
|
that helpful. lacking the correct facts, i nicked the following text
from the macppc page:
The
.Nm
driver provides an interface which simulates the Advanced Power Management
.Pq APM
BIOS functions.
|
|
|
|
Idle threads are never placed on the runqueue so their priority doesn't
matter.
This fixes an accounting bug where top(1) would report a high CPU usage
for Idle threads of secondary CPUs right after booting. That's because
schedcpu() would give 100% CPU time to the Idle thread until "real"
threads get scheduled on the corresponding CPU.
Issue reported by bluhm@, ok visa@, kettenis@
|
|
a flag in the upper byte of the 2-byte-wide receive register is set.
ok kettenis@
|
|
Killing source tracking or state entries by hostname or CIDR would pass
given keys twice to getaddrinfo(3): once to resolve/parse and again to
parse the numerical address in case a prefix was specified.
Avoid this overhead by making pfctl_addrprefix() resolve, pass and mask
in one go and return the list of IPs to the callers. This notably
simplifies both logic and sanity checks around prefix length and address
family.
While here, also pass -N along such that -k and -K can be restricted to
not use DNS.
Discussed with procter sashan, OK sashan
|