Re: mg: print default choice before colon in echo line prompts

2017-08-05 Thread Brian Callahan
On 08/05/17 18:23, Brian Callahan wrote: On 8/5/2017 5:15 PM, Scott Cheloha wrote: 1 week bump, any other feedback on this? I can't commit this right now but I'm also ok with it. If no one commits it by the time I get home later tonight, I'll do it. ~Brian Committed now--thanks! ~Brian

ifstated: improve routing socket error handling

2017-08-05 Thread Rob Pierce
Improve error checking during processing of routing messages. Handling of RTM_DESYNC encouraged by deraadt. Regression tests pass. I have another diff ready to go that handles interface depature, but I thought it best to separate them. Ok? Index: ifstated.c

Prevent pkg_info from puking: 'Use of uninitialized'

2017-08-05 Thread Aaron Bieber
Hola, This was spotted by mischief on #openbsd (freenode). Currently if -v is used with -Q and PKG_PATH is not set, users see: Use of uninitialized value $ENV{"PKG_PATH"} in concatenation (.) or string at /usr/libdata/perl5/OpenBSD/PkgInfo.pm line... This diff fixes that. OK? Cheers,

tetris: use monotonic clock for fall timeout

2017-08-05 Thread Scott Cheloha
Hi, In tetris(6) we use gettimeofday(2) to determine (roughly) how long we polled for user input. This then gets subtracted from the time remaining until we drop the block another row. This should be computed with a monotonic clock instead, lest bullshit like clock drift rob you of that crucial

Re: mg: print default choice before colon in echo line prompts

2017-08-05 Thread Brian Callahan
On 8/5/2017 5:15 PM, Scott Cheloha wrote: > 1 week bump, any other feedback on this? I can't commit this right now but I'm also ok with it. If no one commits it by the time I get home later tonight, I'll do it. ~Brian > -- > Scott Cheloha > >> On Jul 30, 2017, at 2:05 AM, Florian Obser

Re: mg: print default choice before colon in echo line prompts

2017-08-05 Thread Scott Cheloha
1 week bump, any other feedback on this? -- Scott Cheloha > On Jul 30, 2017, at 2:05 AM, Florian Obser wrote: > > OK florian@ > > [...]

in6_leavegroup can't fail

2017-08-05 Thread Florian Obser
OK? diff --git netinet6/in6.c netinet6/in6.c index 45a28663d65..f0db346d116 100644 --- netinet6/in6.c +++ netinet6/in6.c @@ -1350,14 +1350,13 @@ in6_joingroup(struct ifnet *ifp, struct in6_addr *addr, int *errorp) return imm; } -int +void in6_leavegroup(struct in6_multi_mship *imm)