Rdistd can dump core with cmdspecial

2014-11-07 Thread Michael Kennett
Problem - rdistd can dump core when a distfile contains cmdspecial. For example: # mkdir /tmp/rdist.demo && cd /tmp/rdist.demo # cat /root/Distfile.demo /usr/bin -> localhost install /tmp/rdist.demo/files ; cmdspecial "echo The files were: ${FILES:-*-empty-*} > DONE" ; # rdist -f

Re: LibreSSL: GOWindows support

2014-11-07 Thread Dongsheng Song
On Fri, Nov 7, 2014 at 11:07 PM, Brent Cook wrote: > >> On Nov 7, 2014, at 8:21 AM, Dongsheng Song wrote: >> >> I need some code changes for Windows support. >> e.g. >> >> --- a/src/lib/libssl/src/crypto/bio/bss_dgram.c >> +++ b/src/lib/libssl/src/crypto/bio/bss_dgram.c >> @@ -57,13 +57,17 @@ >>

Re: tetris(6): fix select() -> poll() conversion

2014-11-07 Thread patrick keshishian
On Wed, Nov 05, 2014 at 02:44:54PM -0800, patrick keshishian wrote: > On Wed, Nov 05, 2014 at 08:45:07PM +0100, Theo Buehler wrote: > > Pausing a tetris game currently causes a segfault due to a a null > > pointer dereference. > > > > Fix this by checking that s is non-NULL before accessing its me

Re: LibreSSL: GOWindows support

2014-11-07 Thread Brent Cook
> On Nov 7, 2014, at 8:21 AM, Dongsheng Song wrote: > > I need some code changes for Windows support. > e.g. > > --- a/src/lib/libssl/src/crypto/bio/bss_dgram.c > +++ b/src/lib/libssl/src/crypto/bio/bss_dgram.c > @@ -57,13 +57,17 @@ > * > */ > > +#ifdef _WIN32 > +#include > +#else > #includ

LibreSSL: GOWindows support

2014-11-07 Thread Dongsheng Song
I need some code changes for Windows support. e.g. --- a/src/lib/libssl/src/crypto/bio/bss_dgram.c +++ b/src/lib/libssl/src/crypto/bio/bss_dgram.c @@ -57,13 +57,17 @@ * */ +#ifdef _WIN32 +#include +#else #include -#include - #include +#include +#endif + +#include #include -#include

Re: tmux.1: V is a vi key. Use alphabetical order

2014-11-07 Thread Nicholas Marriott
whoops, applied thanks On Fri, Nov 07, 2014 at 11:09:53AM +0100, Theo Buehler wrote: > The new `select line' key 'V' in copy mode is a vi key, not an emacs > key. Move the entry from the emacs column to the vi column in the > manual. > > The table of copy mode keys is mostly sorted in alphabeti

tmux.1: V is a vi key. Use alphabetical order

2014-11-07 Thread Theo Buehler
The new `select line' key 'V' in copy mode is a vi key, not an emacs key. Move the entry from the emacs column to the vi column in the manual. The table of copy mode keys is mostly sorted in alphabetical order with a few exceptions that make some sense and a few that don't. I seems most reasonab