patch: make share/mk support for yacc files better behaved

2017-07-07 Thread Marc Espie
This is a collaboration of sort with FreeBSD. To me very specific, working on fixing depends made me look at fixing yacc support, and at the same time, I looked at FreeBSD, and they did this already (with different code, our share/mk are wildly divergent), so this comforted me this was doable and

Re: cwm: remove ssh auto-completion

2017-07-07 Thread Bryan Steele
On Fri, Jul 07, 2017 at 12:44:35PM -0400, Okan Demirmen wrote: > Hi cwm users, > > In converting this to use getline(3) over fgetln(3), I'm asking the question > if > this (imho) mis-feature belongs in a window manager. I've hinted at wanting to > remove it in the past but there was opposition.

cwm: remove ssh auto-completion

2017-07-07 Thread Okan Demirmen
Hi cwm users, In converting this to use getline(3) over fgetln(3), I'm asking the question if this (imho) mis-feature belongs in a window manager. I've hinted at wanting to remove it in the past but there was opposition. As a compromise, we could just leave the 'ssh>' menu available, but it will

Re: [PATCH] clarify history of htpasswd(1) in its manpage

2017-07-07 Thread Ingo Schwarze
Hi Raf, Raf Czlonka wrote on Fri, Jul 07, 2017 at 03:30:41AM +0100: > Just gone through htpasswd(1)'s man page and noticed this > in the AUTHORS section: > > Florian Obser implemented htpasswd > from scratch after httpd was removed from OpenBSD base. > > To

Re: install.sub: Typo/whitespace nit

2017-07-07 Thread Theo Buehler
On Tue, Jul 04, 2017 at 02:14:58AM +0200, Klemens Nanni wrote: > Remove duplicate full stop and add space after function name. committed, thanks

Re: install.sub: Typo/whitespace nit

2017-07-07 Thread Robert Peichaer
On Tue, Jul 04, 2017 at 02:14:58AM +0200, Klemens Nanni wrote: > Remove duplicate full stop and add space after function name. > > Feedback/OK? > > Index: install.sub > === > RCS file: /cvs/src/distrib/miniroot/install.sub,v >

[diff] httpd: add tls client certificate verification

2017-07-07 Thread Jack Burton
Now that libtls supports CRL checking (thanks jsing@ & beck@ for your help to get that in), let's have another go at adding tls client verification to httpd. This diff does just that, with options to verify tls client certs, optionally with full chain CRL checks. All the same info is passed

Re: dhcpd: don't reject DHCPINFORM from behind relay

2017-07-07 Thread Landry Breuil
On Thu, Jul 06, 2017 at 11:28:11AM +0200, Landry Breuil wrote: > On Wed, Jul 05, 2017 at 04:37:39PM +0200, Reyk Floeter wrote: > > Hi, > > > > landry@ sees many log messages 'DHCPINFORM from xx but ciaddr yy is > > not consistent with actual address' in a setup where dhcpd runs behind > >

csh(1): restore tty on SIGINT

2017-07-07 Thread Anton Lindqvist
Hi, This one is crucial, aborting loops in csh is done upon receiving SIGINT. The signal handler will eventually call longjmp() and re-enter the input loop if all went well. The tty should therefore be restored prior sending the SIGINT. Strange behavior discovered by the regress suite. Comments?