Remove residual blank line at start of MakefileThis is a residual of the $FreeBSD$ removal.MFC After: 3 days (though I'll just run the command on the branches)Sponsored by: Netflix
Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
Remove $FreeBSD$: two-line .h patternRemove /^\s*\*\n \*\s+\$FreeBSD\$$\n/
NO_MAN= has been deprecated in favor of MAN= for some time, go aheadand finish the job. ncurses is now the only Makefile in the tree thatuses it since it wasn't a simple mechanical change, and will
NO_MAN= has been deprecated in favor of MAN= for some time, go aheadand finish the job. ncurses is now the only Makefile in the tree thatuses it since it wasn't a simple mechanical change, and will beaddressed in a future commit.
show more ...
o style.Makefile(5): WARNS= -> WARNS?=.
Style: NO_MAN doesn't need any value.
Add a regression test to test two variations on the same bug: joining amulticast group using a raw socket, then removing the interface on whichthe group is found, and joining a multicast group usin
Add a regression test to test two variations on the same bug: joining amulticast group using a raw socket, then removing the interface on whichthe group is found, and joining a multicast group using a udp socket,then removing the interface on which the group is found. An if_discinterface is used as the interface on which to attach.NB: A panic currently results from running this regression test, so doso with caution.PR: 77665Reported by: Gavin Atkinson <gavin dot atkinson at ury dot york dot ac dot uk>Reported by: Brooks Davis <brooks at FreeBSD dot org>