Re: wscons: precision scrolling

2019-03-13 Thread Ulf Brosziewski
On 3/13/19 4:49 PM, Martin Pieuchot wrote: > On 13/03/19(Wed) 00:41, Ulf Brosziewski wrote: >> The standard method of scrolling in X is tailored to mouse wheels and >> proceeds in coarse steps. Wheel events are mapped to button events, and on >> receiving such an event, an application moves the

Re: wscons: precision scrolling

2019-03-13 Thread Ulf Brosziewski
On 3/13/19 5:27 PM, joshua stein wrote: > On Wed, 13 Mar 2019 at 00:41:12 +0100, Ulf Brosziewski wrote: >> The standard method of scrolling in X is tailored to mouse wheels and >> proceeds in coarse steps. Wheel events are mapped to button events, and on >> receiving such an event, an application

Re: 63 bit certificate ID is libressl affected?

2019-03-13 Thread Ingo Schwarze
Hi Tom, Tom Smyth wrote on Wed, Mar 13, 2019 at 08:32:20PM +: > Just saw the following article and i was wondering if libressl > Might be affected by the bug also > Top bit being set to 0 always making an effective 63 bits rather than 64 > bits If i understand the article you quote

63 bit certificate ID is libressl affected?

2019-03-13 Thread Tom Smyth
Hello all, Just saw the flllowing article and i was wondering if libressl Might be affected by the bug also Top bit being set to 0 always making an effective 63 bits rather than 64 bits https://www.theregister.co.uk/2019/03/13/tls_cert_revoke_ejbca_config/ Hope this helps Tom -- Kindest

Re: Option for alternative escape character with cu(1)

2019-03-13 Thread Artturi Alm
On Wed, Mar 13, 2019 at 07:47:08AM -0600, Todd C. Miller wrote: > On Wed, 13 Mar 2019 14:35:06 +0200, Artturi Alm wrote: > > > i don't have issues with tilde when using locally, but i mostly ssh to > > reach cu, and too many times i've forgotten to configure ssh/use -e, > > with this cu(1)

npppd(8): remove dead code

2019-03-13 Thread Denis Fondras
There is some code that dates back to 2010 and cannot compile if -DUSE_NPPPD_ARP. So I guess we can safely remove. Denis Index: npppd/npppd.c === RCS file: /cvs/src/usr.sbin/npppd/npppd/npppd.c,v retrieving revision 1.49 diff -u

less(1) UTF-8 cleanup: pappend()

2019-03-13 Thread Ingo Schwarze
Hi Todd, Todd C. Miller wrote on Tue, Mar 12, 2019 at 09:14:43AM -0600: > This looks like an improvement to me. OK millert@ Thanks for checking the do_append() patch, i committed it. The next step is to clean up pappend(), which reads one byte of a multibyte character per call and outputs the

Re: wscons: precision scrolling

2019-03-13 Thread joshua stein
On Wed, 13 Mar 2019 at 00:41:12 +0100, Ulf Brosziewski wrote: > The standard method of scrolling in X is tailored to mouse wheels and > proceeds in coarse steps. Wheel events are mapped to button events, and on > receiving such an event, an application moves the view of its data by some > fixed

Re: wscons: precision scrolling

2019-03-13 Thread Martin Pieuchot
On 13/03/19(Wed) 00:41, Ulf Brosziewski wrote: > The standard method of scrolling in X is tailored to mouse wheels and > proceeds in coarse steps. Wheel events are mapped to button events, and on > receiving such an event, an application moves the view of its data by some > fixed distance -

Re: Option for alternative escape character with cu(1)

2019-03-13 Thread Nicholas Marriott
Why only % rather than have -e take an argument like ssh? On Wed, Mar 13, 2019 at 02:35:06PM +0200, Artturi Alm wrote: > Hi, > > i don't have issues with tilde when using locally, but i mostly ssh to > reach cu, and too many times i've forgotten to configure ssh/use -e, > with this cu(1)

Re: Option for alternative escape character with cu(1)

2019-03-13 Thread Todd C . Miller
On Wed, 13 Mar 2019 14:35:06 +0200, Artturi Alm wrote: > i don't have issues with tilde when using locally, but i mostly ssh to > reach cu, and too many times i've forgotten to configure ssh/use -e, > with this cu(1) becomes safer/easier to use for us with non-english > keyboard. > ~tilde is

Option for alternative escape character with cu(1)

2019-03-13 Thread Artturi Alm
Hi, i don't have issues with tilde when using locally, but i mostly ssh to reach cu, and too many times i've forgotten to configure ssh/use -e, with this cu(1) becomes safer/easier to use for us with non-english keyboard. ~tilde is certainly annoying when it's three key presses alone, and then

Re: small detail on faq current upgrade guide.

2019-03-13 Thread Nick Holland
On 3/13/19 7:03 AM, Janne Johansson wrote: > Since some confusion was noticed about this sentence, this might make > it clearer: ... > -Upgrading to -current by compiling your own source code is not supported. > +Upgrading to -current from a release by compiling your own source > code is not

small detail on faq current upgrade guide.

2019-03-13 Thread Janne Johansson
Since some confusion was noticed about this sentence, this might make it clearer: $ cvs -q diff -u current.html Index: current.html === RCS file: /cvs/www/faq/current.html,v retrieving revision 1.982 diff -u -p -u -r1.982

Re: extend BPF filter drop to allow not capturing packets

2019-03-13 Thread Claudio Jeker
On Wed, Mar 13, 2019 at 11:32:36AM +0100, Mike Belopuhov wrote: > > David Gwynne writes: > > > On Tue, Mar 05, 2019 at 12:03:05PM +1000, David Gwynne wrote: > >> this extends the fildrop mechanism so you can drop the packets with bpf > >> using the existing fildrop method, but with an extra

Re: extend BPF filter drop to allow not capturing packets

2019-03-13 Thread Mike Belopuhov
David Gwynne writes: > On Tue, Mar 05, 2019 at 12:03:05PM +1000, David Gwynne wrote: >> this extends the fildrop mechanism so you can drop the packets with bpf >> using the existing fildrop method, but with an extra tweak so you can >> avoid the cost of copying packets to userland. >> >> i

fix kvm(3) support for netstat -r

2019-03-13 Thread Naoki Fukaumi
hi tech@, netstat -r with -A/-M (which uses kvm(3)) was broken since in-kernel routing table implementation was changed to ART-based. this patch adds support for ART-based implementation in netstat. kernel and src build ok. by the way, is "netstat -r with -A on live system" really needed? it