| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
| |
|
| |
|
|
|
|
|
|
|
|
| |
in freebsd src commit r253066. our man pages had been updated, but i must
have missed the following:
- getnameinfo.3: 2553 -> 3493
- ip6.4: we listed both. remove 2553.
|
| |
|
| |
|
|
|
|
| |
From FreeBSD. OK miod@
|
|
|
|
|
|
| |
just an alias of the latter.
ok matthew@ tedu@
|
| |
|
|
|
|
| |
ok guenther
|
|
|
|
|
|
|
| |
move the call_depth decrement so it happens unconditionally and can
still return to 0 when called with dso!=NULL.
ok millert
|
|
|
|
|
|
|
|
|
| |
Catalogs had an arbitrary character set which was used regardless of locale.
Add UTF-8-encoded catalogs for libc error messages, and rename existing ones
to indicate their character sets. catopen(3) now chooses a catalog which
matches the locale's encoding, if available.
help & ok matthew, man page bits ok jmc, input from naddy and bluhm
|
|
|
|
|
|
|
|
| |
hyphen in their official programming guide sometime between 2003 and
2005, and Clang's integrated assembler does not support hyphenated
mnemonics.
ok jsg, deraadt
|
|
|
|
| |
ok millert@
|
|
|
|
|
|
| |
from Alf Schlichting
ok millert@
|
|
|
|
|
|
|
|
|
| |
Requires a libc minor bump, committing now so that we have up-to-date
snapshots for the upcoming hackathon.
joint work with millert@
man page bits ok jmc@
input and ok millert@, guenther@, deraadt@
|
| |
|
|
|
|
|
| |
want to be using DES) and some of the notes about the export controls
are no longer so relevant. ok deraadt jmc
|
| |
|
|
|
|
| |
the function is going to return.
|
| |
|
|
|
|
| |
silence some warnings.
|
|
|
|
| |
ok millert guenther
|
|
|
|
| |
okay guenther@
|
| |
|
|
|
|
| |
ok eric@
|
|
|
|
|
|
|
|
|
|
|
| |
where appropriate. Among other things makes the symbols consistent
across all architectures (notably where ldbl mantissa is 53 bits).
While at it, kill unused LINTLIBRARY/PROTOLIB1 cruft which was there
to trick lint into recording the right prototypes for aliased
functions. Most of the work done at the awesome n2k13 hackathon.
Agreed by kettenis@, guenther@, matthew@.
|
|
|
|
| |
ok deraadt@ guenther@ djm@
|
|
|
|
|
| |
interface is added at just the right... wrong moment.
ok millert dlg
|
|
|
|
| |
reported by ajacoutot and (much earlier, sorry) by Alexey Suslikov
|
|
|
|
|
| |
from the openssl git (changes between openssl 1.0.1c and 1.0.1d).
ok djm@
|
| |
|
|
|
|
| |
corner cases. OK millert@.
|
|
|
|
| |
expanded, but not enough due to precedence error. Spotted by Thorsten Glaser.
|
|
|
|
| |
ok jakob
|
|
|
|
| |
ok guenther millert kettenis
|
| |
|
|
|
|
| |
text. OK deraadt@
|
| |
|
|
|
|
|
| |
grantpt() and unlockpt() using /dev/ptm. Man pages from FreeBSD.
OK kettenis@ deraadt@ beck@ ajacoutot@ naddy@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- additional cert's from GlobalSign.
- additional cert's from VeriSign and replace existing ones with
'Signature Algorithm: md2WithRSAEncryption' with their currently
distributed sha1WithRSAEncryption versions.
- new CAs: AddTrust (root for most Comodo certificates also heavily
used in academic networks), Comodo (most of their certs are rooted in
AddTrust but TERENA use the Comodo AAA Certificate Services root
for some things so add that separately), UserTrust Network/UTN
(part of Comodo) and Starfield (part of Go Daddy).
|
|
|
|
| |
ok beck@ william@ todd@
|
|
|
|
|
|
| |
and include sha1 signatures for all certs (some were missing).
No certificate changes, this is just for consistency. ok beck@
|
|
|
|
|
|
| |
Remove intermediate GoDaddy certificate, this file should just contain roots.
ok beck@ phessler@
|
|
|
|
|
|
|
|
|
|
| |
not going to fix in order to stay compatible with legacy password data.
Nobody should use DES crypt anyway these days.
See http://www.freebsd.org/security/advisories/FreeBSD-SA-12:02.crypt.asc
for details about this bug.
Discussed with deraadt and beck about half a year ago (I'm pruning Ms
from my tree).
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
- sync RES_DEBUG with resolv.conf.5
- document RES_PRIMARY, but mark it unsupported (like we already do
for RES_AAAONLY)
- use the exact same text (about being enabled by default) for
RES_RECURSE as for the other two defaults
- document RES_INSECURE{1,2} - description lifted from resolv.conf.5
- document RES_NOALIASES
- mostly sync the RES_USE_EDNS0 text with resolv.conf.5
- RES_USE_DNSSEC not documented for now. something to come...
ok sthen
|
| |
|
| |
|
|
|
|
|
|
| |
or the special value of 0.
ok deraadt@ otto@
|
|
|
|
|
|
| |
Should make coredumps from abort() easier to debug too.
ok kurt@
|
|
|
|
|
|
|
|
|
|
|
|
| |
unmapping of freed allocations without disabling chunk randomisation
like the "Freeguard" ('F') option does. Make security 'S' option
use 'U' and not 'F'.
Rationale: guarding with no chunk randomisation is great for debugging
use-after-free, but chunk randomisation offers better defence against
"heap feng shui" style attacks that depend on carefully constructing a
particular heap layout so we should leave this enabled when requesting
security options.
|