Re: Fix size hints for x11-ssh-askpass

2015-12-27 Thread Matthieu Herrb
On Sun, Dec 27, 2015 at 08:28:36PM +0100, Alexander Hall wrote: > Hi, > > Recently, my window manager (i3) started making the ssh-askpass windows > too small to be really usable. The problem seems to be that the size > hints indicate that it provides a width and height, while those fields > are

Re: [st...@openbsd.org: vlc, ld.so sigsegv/sigbus: _dl_cache_grpsym_list]

2015-12-27 Thread Philip Guenther
On Sun, Dec 27, 2015 at 9:13 AM, Stuart Henderson wrote: > Widening the audience to tech in case anyone with an idea missed it > on ports: it seems some people are having a lot more trouble than just > needing to restart build 2 or 3 times. Can you drop the LD_DEBUG=1 output from a crash somewher

Re: minor build fix in libssl

2015-12-27 Thread YASUOKA Masahiko
On Thu, 17 Dec 2015 12:04:10 +0900 (JST) YASUOKA Masahiko wrote: > Compiling sha256-x86_64.S fails if the "src" is located a directory > which includes "512". Actually I hit this problem like below since it's 2015-12: sha512-x86_64.so: In function `sha512_block_data_order': /source/yasuoka/2

Re: Potential continue bug in mii(4)

2015-12-27 Thread Mark Kettenis
> Date: Sun, 27 Dec 2015 13:36:29 -0500 > From: Michael McConville > > The continue statement below is a nop. It seems that it meant to > continue the outer loop. This is an educated guess based on the logic > and the inner loop's comments. Thoughts? Looks like this is a bug indeed. > Also, in

Re: Remove redundant continue

2015-12-27 Thread Mark Kettenis
> Date: Sun, 27 Dec 2015 13:48:19 -0500 > From: Michael McConville > > A trivial simplification, but it's a false positive for an > inner-loop-continue bug, so it'd be nice to take care of it. > > ok? The code is easier to understand the way it is now. > Index: sys/arch/amd64/amd64/intr.c > ==

sftp globbing remote pwd

2015-12-27 Thread Christian Heckendorf
Several sftp(1) commands will fail if the remote pwd contains glob(3) meta characters. This is due to glob being called on the concatenated pwd and command argument in order to generate a file list to operate on. However, the pwd is not escaped before calling glob, so glob will offer no useful resu

Re: Fix size hints for x11-ssh-askpass

2015-12-27 Thread Alexander Hall
On Sun, Dec 27, 2015 at 08:44:35PM +0100, Theo Buehler wrote: > On Sun, Dec 27, 2015 at 08:28:36PM +0100, Alexander Hall wrote: > > Hi, > > > > Recently, my window manager (i3) started making the ssh-askpass windows > > too small to be really usable. The problem seems to be that the size > > hin

Re: Fix size hints for x11-ssh-askpass

2015-12-27 Thread Theo Buehler
On Sun, Dec 27, 2015 at 08:28:36PM +0100, Alexander Hall wrote: > Hi, > > Recently, my window manager (i3) started making the ssh-askpass windows > too small to be really usable. The problem seems to be that the size > hints indicate that it provides a width and height, while those fields > are

Fix size hints for x11-ssh-askpass

2015-12-27 Thread Alexander Hall
Hi, Recently, my window manager (i3) started making the ssh-askpass windows too small to be really usable. The problem seems to be that the size hints indicate that it provides a width and height, while those fields are set to 0. While looking at this, the same seems to be the case for positio

Remove redundant continue

2015-12-27 Thread Michael McConville
A trivial simplification, but it's a false positive for an inner-loop-continue bug, so it'd be nice to take care of it. ok? Index: sys/arch/amd64/amd64/intr.c === RCS file: /cvs/src/sys/arch/amd64/amd64/intr.c,v retrieving revision

Potential continue bug in mii(4)

2015-12-27 Thread Michael McConville
The continue statement below is a nop. It seems that it meant to continue the outer loop. This is an educated guess based on the logic and the inner loop's comments. Thoughts? Also, in situations like this, should we make all continue statements goto loop_end? In the fix I committed for pciide(4)

[st...@openbsd.org: vlc, ld.so sigsegv/sigbus: _dl_cache_grpsym_list]

2015-12-27 Thread Stuart Henderson
Widening the audience to tech in case anyone with an idea missed it on ports: it seems some people are having a lot more trouble than just needing to restart build 2 or 3 times. - Forwarded message from Stuart Henderson - From: Stuart Henderson Date: Tue, 15 Dec 2015 12:48:21 + To:

Re: mpsafe re(4)

2015-12-27 Thread David Gwynne
> On 26 Dec 2015, at 5:49 PM, Jonathan Matthew wrote: > > On Sat, Dec 05, 2015 at 06:11:51PM +0100, Jonathan Matthew wrote: >> The main interesting bit here is the txeof and start loops, which previously >> operated based on the prod/cons indices and the contents of the tx queue, >> but now just

Circular queues are gone

2015-12-27 Thread Chris Hettrick
Circular queues are gone, so remove remaining references to them. Index: sys/sys/queue.h === RCS file: /cvs/src/sys/sys/queue.h,v retrieving revision 1.42 diff -u -p -r1.42 queue.h --- sys/sys/queue.h 19 Nov 2015 21:03:36 -

[PATCH] vi remove custom perr from cl_main

2015-12-27 Thread Martijn van Duren
Hello tech@, This patch has been accepted by the nvi2 project.[1] There are more patches, but I'm waiting till these have been reviewed by nvi2. Sincerely, Martijn van Duren [1] https://github.com/lichray/nvi2/pull/43 Index: cl/cl_main.c ==