Re: [patch] ldattach ignores -t for msts line discipline

2014-08-09 Thread Maurice Janssen
On 08/10/14 04:10, Philip Guenther wrote: On Thu, Aug 7, 2014 at 1:07 PM, Maurice Janssen wrote: The -t option for ldattach doesn't seem to work when using an msts time receiver. The patch below fixes this. I guess this part was forgotten when msts support was added in r1.4. Committed.

Re: insque/remque bugs

2014-08-09 Thread Philip Guenther
On Wed, Jul 23, 2014 at 5:43 PM, enh wrote: > If the queue is to be used as a linear list, invoking insque(&element, > NULL), where element is the initial element of the queue, shall > initialize the forward and backward pointers of element to null > pointers. > Hmm. Do the vax ASM versions of

Re: [patch] ldattach ignores -t for msts line discipline

2014-08-09 Thread Philip Guenther
On Thu, Aug 7, 2014 at 1:07 PM, Maurice Janssen wrote: > > The -t option for ldattach doesn't seem to work when using an msts > time receiver. The patch below fixes this. I guess this part was > forgotten when msts support was added in r1.4. > Committed. Philip Guenther

Re: enable forwarding to remote named sockets in ssh

2014-08-09 Thread Todd C. Miller
On Fri, 08 Aug 2014 16:38:11 -0400, Jared Yanovich wrote: > I cannot forward to a socket on the remote host ("No forward host name."). Looks correct, but we should also add to the regress tests. - todd

Re: don't ask the aperture question on virtual vga

2014-08-09 Thread Jonathan Gray
On Sat, Aug 09, 2014 at 02:51:28PM -0500, joshua stein wrote: > On Sat, 09 Aug 2014 at 02:10:51 +1000, Jonathan Gray wrote: > > This extends the list of devices the installer will skip > > asking the vga aperture question on to cover virtual machines. > > > > If Xorg is going to be run machdep.all

Move sending of router solicitation packages to the kernel

2014-08-09 Thread Florian Obser
This moves sending of router solicitation packages to the kernel. With it rtsol{,d}(8) is no longer needed. Add inet6 autoconf to /etc/hostname.IF or run ifconfig IF inet6 autoconf and the kernel will start sending rtsol packages. An the following events a timer will be (re) started with a timeout

Re: switch /usr/bin/cpp to tradcpp

2014-08-09 Thread Joerg Sonnenberger
On Sun, Aug 10, 2014 at 12:29:24AM +1000, Jonathan Gray wrote: > On Sat, Aug 09, 2014 at 04:17:51PM +0200, Joerg Sonnenberger wrote: > > On Sat, Aug 09, 2014 at 11:37:02PM +1000, Jonathan Gray wrote: > > > clang only has an integrated preprocessor and does not have > > > a standalone preprocessor o

Re: switch /usr/bin/cpp to tradcpp

2014-08-09 Thread Jonathan Gray
On Sat, Aug 09, 2014 at 04:17:51PM +0200, Joerg Sonnenberger wrote: > On Sat, Aug 09, 2014 at 11:37:02PM +1000, Jonathan Gray wrote: > > clang only has an integrated preprocessor and does not have > > a standalone preprocessor or the option of using one. > > Huh? clang-cpp will certainly act as st

Re: switch /usr/bin/cpp to tradcpp

2014-08-09 Thread Joerg Sonnenberger
On Sat, Aug 09, 2014 at 11:37:02PM +1000, Jonathan Gray wrote: > clang only has an integrated preprocessor and does not have > a standalone preprocessor or the option of using one. Huh? clang-cpp will certainly act as standalone preprocessor. Joerg

switch /usr/bin/cpp to tradcpp

2014-08-09 Thread Jonathan Gray
This switches the /usr/bin/cpp shell script cpp wrapper to tradcpp. As the script sets -traditional by default anything calling this script has been getting traditional semantics. gcc3 and gcc4 have a builtin preprocessor that is used by default that can be disabled with -no-integrated-cpp in addi