Re: Route mpath conflict tweak

2015-02-03 Thread Claudio Jeker
On Wed, Feb 04, 2015 at 02:15:22AM +0100, Martin Pieuchot wrote: > On 03/02/15(Tue) 16:25, Claudio Jeker wrote: > > On Tue, Feb 03, 2015 at 10:39:35AM +0100, Martin Pieuchot wrote: > > > Diff below changes rt_mpath_conflict() to no longer rely on a fully > > > initialized rtentry. Right now it mak

Re: syslog over TLS

2015-02-03 Thread Ted Unangst
sven falempin wrote: > > Dear Tech@openbsd.org in the future, it's not really necessary to quote the entire diff. > > > Most of TLS client got a few parameters like : > > CRL,CA,and Client Certificat > > Just look at < Document how to send syslog messages over TCP or TLS. > > (because this T

Re: Route mpath conflict tweak

2015-02-03 Thread Martin Pieuchot
On 03/02/15(Tue) 16:25, Claudio Jeker wrote: > On Tue, Feb 03, 2015 at 10:39:35AM +0100, Martin Pieuchot wrote: > > Diff below changes rt_mpath_conflict() to no longer rely on a fully > > initialized rtentry. Right now it makes things prettier when adding > > a new route entry but later it will al

Re: syslog over TLS

2015-02-03 Thread sven falempin
On Fri, Jan 16, 2015 at 12:54 PM, Reyk Floeter wrote: > On Fri, Jan 16, 2015 at 12:56:45PM +0100, Alexander Bluhm wrote: >> On Fri, Jan 16, 2015 at 01:46:09AM +0100, Alexander Bluhm wrote: >> > This diff enables sending syslog messages over TLS. >> >> Updated diff after sys/param.h commit. Only s

Re: elantech-v4 clickpad support

2015-02-03 Thread Ulf Brosziewski
On 01/30/2015 11:04 AM, Ulf Brosziewski wrote: On 01/30/2015 07:15 AM, Martin Pieuchot wrote: On 30/01/15(Fri) 01:25, Ulf Brosziewski wrote: Probably I was too sceptical about synaptics.c. The bug I observed with the ALPS touchpad seems to be due to a kind of mismatch between the ALPS code in p

Re: Unbreak !HIBERNATE builds (amd64)

2015-02-03 Thread Mike Larkin
On Tue, Feb 03, 2015 at 03:36:59AM -0700, David Coppa wrote: > > ok? > > Ciao, > David > > Index: arch/amd64/amd64/acpi_wakecode.S > === > RCS file: /cvs/src/sys/arch/amd64/amd64/acpi_wakecode.S,v > retrieving revision 1.35 > diff -

Re: bgpd.conf macros on 5.5 and up

2015-02-03 Thread Denis Fondras
Hi all, Here is a patch to revert back to 5.4 behaviour so the manual example with braces works again : # cat /etc/bgpd.conf AS 65001 rou

Re: Route mpath conflict tweak

2015-02-03 Thread Claudio Jeker
On Tue, Feb 03, 2015 at 10:39:35AM +0100, Martin Pieuchot wrote: > Diff below changes rt_mpath_conflict() to no longer rely on a fully > initialized rtentry. Right now it makes things prettier when adding > a new route entry but later it will also help to dissociate "struct > radix_node" from "st

Unbreak !HIBERNATE builds (amd64)

2015-02-03 Thread David Coppa
ok? Ciao, David Index: arch/amd64/amd64/acpi_wakecode.S === RCS file: /cvs/src/sys/arch/amd64/amd64/acpi_wakecode.S,v retrieving revision 1.35 diff -u -p -u -p -r1.35 acpi_wakecode.S --- arch/amd64/amd64/acpi_wakecode.S8 Dec 201

Route mpath conflict tweak

2015-02-03 Thread Martin Pieuchot
Diff below changes rt_mpath_conflict() to no longer rely on a fully initialized rtentry. Right now it makes things prettier when adding a new route entry but later it will also help to dissociate "struct radix_node" from "struct rtentry". route(8) regression tests checking for conflicts are happ