Re: rs, jot: missing headers

2014-04-10 Thread Philip Guenther
On Thu, Apr 10, 2014 at 7:14 PM, Ralph Siegler wrote: > On Thu, 14 Nov 2013 23:17:24 -0500, Eitan Adler wrote: >> I was looking through some OpenBSD code and noticed that rs and jot are >> both missing #include even though they use getopt. It seems >> that stdlib.h defines getopt on OpenBSD. Ho

Re: rs, jot: missing headers

2014-04-10 Thread Ralph Siegler
On Thu, 14 Nov 2013 23:17:24 -0500, Eitan Adler wrote: > Hey all, > > I was looking through some OpenBSD code and noticed that rs and jot are > both missing #include even though they use getopt. It seems > that stdlib.h defines getopt on OpenBSD. However, this is not the > correct header file,

Re: OpenSSH hole, April 9

2014-04-10 Thread Bob Beck
On 9 Apr 2014 15:46, "Bob Beck" wrote: > > On Wed, Apr 09, 2014 at 02:49:21PM -0600, Devin Reade wrote: > > Quoting Theo de Raadt : > > > > >If tomorrow Damien or I had to announce a major OpenSSH hole, how > > >screwed would the Internet be? > > > > Would you mind clarifying this a bit? Was the

Re: Brightness and KBD light (Apple): ukbd.c/wskbd.c to asmc driver?

2014-04-10 Thread Alexandre Ratchov
On Sun, Apr 06, 2014 at 09:45:11PM +0200, Sven-Volker Nowarra wrote: > Hi, > > I am thinking about an approach to set the brightness on my > MacBook via standard keyboard keys. I can already call from the > commandline "wsconsctl display.brightness=xx", and it will arrive > in my asmc.c driver (th

Re: OpenBSD Foundation 2014 Fundraising Campaign.

2014-04-10 Thread Loganaden Velvindron
On Thu, Apr 10, 2014 at 8:23 PM, Bob Beck wrote: > > The OpenBSD Foundation is happy to report that the $150,000 goal of the 2014 > fundraising campaign has been reached. > > We wish to thank our contributors large and small. We will continue > our fundraising efforts both in the current year and

OpenBSD Foundation 2014 Fundraising Campaign.

2014-04-10 Thread Bob Beck
The OpenBSD Foundation is happy to report that the $150,000 goal of the 2014 fundraising campaign has been reached. We wish to thank our contributors large and small. We will continue our fundraising efforts both in the current year and next year. The success of this year's effort has allowed t

snmpd: support for multiple routing tables...

2014-04-10 Thread Mike Belopuhov
...borrowed from the bgpd for the most part. Currently it's not doing anything (kroute_first/kroute_getaddr will always select the rtable 0) since it needs new MIBs and some more diffs from blambert@. OK? diff --git usr.sbin/snmpd/kroute.c usr.sbin/snmpd/kroute.c index e157b25..d1f8890 100644 --

Re: snmpd: support for ipNetToMediaTable (ARP table exporting)

2014-04-10 Thread Mike Belopuhov
On Mon, Apr 07, 2014 at 17:03 +0200, Mike Belopuhov wrote: > a bit of an update, mainly style changes. one functional change: > don't rely on rtm_rmx.rmx_expire to set the F_STATIC flag as > rt_getmetrics is not called consistenly (only with RTM_GETs) and > besides RTF_STATIC flag is already prese

Re: ifa_ifwithnet(9) is not for AF_LINK

2014-04-10 Thread Mike Belopuhov
On 10 April 2014 16:16, Martin Pieuchot wrote: > Here's a diff to stop dealing with AF_LINK addresses in ifa_ifwithnet(9). > ^^^ > The only place where such thing happens is when ifa_ifwithroute() do its > magic to find an address f

ifa_ifwithnet(9) is not for AF_LINK

2014-04-10 Thread Martin Pieuchot
Here's a diff to stop dealing with AF_LINK addresses in ifa_ifwithnet(9). ^^^ The only place where such thing happens is when ifa_ifwithroute() do its magic to find an address for a route. So in this case, it does the check directly