snapshot from 26-Jan-2016 - pfsync panic

2016-01-28 Thread Hrvoje Popovski
Hi all, i have pf,carp,pfsync and dhcpd setup with 2 Dell R610. today i updated my secondary firewall with latest snapshot from http://ftp2.eu.openbsd.org/ install59.iso 26-Jan-2016 04:00 and after update secondary firewall panic http://kosjenka.srce.hr/~hrvoje/crash2.jpg i couldn't type

Re: I have a program I wish to submit for the base

2016-01-28 Thread Luke Small
I think I fixed all your suggestions. I don't strictly adhere to kernel normal in the use of comments and I parse command-line arguments without using getopt(3), but the method is robust. -Luke /* * Copyright (c) 2016 Luke N. Small * * Permission to use, copy, modify, and distribute this

I have a program I wish to submit for the base

2016-01-28 Thread Luke Small
pkg_ping [-s timeout] [-n maximum_mirrors_written] It scrapes each mirror's location and URL from openbsd.org/ftp.html and tests the package repository with the version and architecture of the machine. It kills the ftp() and sed() functions it calls from C if it takes too long by using kqueue.

Re: troff fonts and their path wrong

2016-01-28 Thread Todd C. Miller
On Thu, 28 Jan 2016 12:06:42 -0600, Chris Bennett wrote: > These paths do not exist. Locate vfont brings up nothing > > What should be done here? > Fix it or remove it? > I know nothing about troff, so need help from someone who does. The troff support in lpd is of the old phototypesetter

Re: printjob.c

2016-01-28 Thread Theo Buehler
On Thu, Jan 28, 2016 at 10:37:15AM -0600, Chris Bennett wrote: > No need for bauds structure, since handled by cfsetspeed > Since this has been #ifdef'ed out for nearly 20 years, I suppose this can go. Any objections? > > Index: printjob.c >

Re: snapshot from 26-Jan-2016 - pfsync panic

2016-01-28 Thread Alexandr Nedvedicky
Hello, > would this commit > http://permalink.gmane.org/gmane.os.openbsd.cvs/152882 > resolve this problem? This commit should fix this issue. can you test it for me? FYI: if_pfsync.c must initialize reference counter at imported statekey to 1. If it is left to 0, then PF trips the assert.

Re: troff first diff

2016-01-28 Thread Chris Bennett
First diff Index: pathnames.h === RCS file: /cvs/src/usr.sbin/lpr/common_source/pathnames.h,v retrieving revision 1.6 diff -u -p -r1.6 pathnames.h --- pathnames.h 28 Oct 2015 13:25:55 - 1.6 +++ pathnames.h 28 Jan 2016

Re: troff first diff

2016-01-28 Thread Theo Buehler
On Thu, Jan 28, 2016 at 01:00:11PM -0600, Chris Bennett wrote: > First diff But this won't compile as long as these #defines are still used in printjobs.c. The code should compile and be correct at all stages, so this will probably be the last part of your intended troff removal. Before you

Re: [calendar] United States holiday migrations

2016-01-28 Thread Craig Skinner
Hi Jason, On 2016-01-28 Thu 00:34 AM |, Jason McIntyre wrote: > On Wed, Jan 27, 2016 at 11:06:41PM +, Craig Skinner wrote: > > > > NOOP;- relocate USA state/national holidays from calendar.holiday > > into existing sparse calendar.usholiday file. > > > > i have to say i am less keen on

install efi bootloader into an additional directory

2016-01-28 Thread Remi Locherer
Hi Since we have efiboot creating a multiboot environment on amd64/i386 became simpler. One obstacle is that (all?) OSs write their bootloader to the default loction efi/boot/ on the EFI Sys partition. Some OSs also create an efi/XXX directory where they put most of their stuff (centos, ubuntu,

snmpd: some values need casting

2016-01-28 Thread Gerhard Roth
Hi, ber_add_integer() can ASN.1 encode integers of up to 64 bit. Yet for some types (e.g. SNMP_T_TIMETICKS, SNMP_T_GAUGE32, ..) the MIB says that the value must no exceed 2^32-1. We should cast the value to u_int32_t to avoid that e.g. Gauge32 carries a value larger than 32 bit. One special

Re: [calendar] United States holiday migrations

2016-01-28 Thread Darren Tucker
On Thu, Jan 28, 2016 at 11:30 AM, Ian Mcwilliam wrote: > Just for the record > > 01/30 Australia Day in Australia > should be > 01/26 Australia Day in Australia > > If someone so wishes to fix it. Fixed, thanks. -- Darren Tucker (dtucker at zip.com.au)

troff fonts and their path wrong

2016-01-28 Thread Chris Bennett
These paths do not exist. Locate vfont brings up nothing What should be done here? Fix it or remove it? I know nothing about troff, so need help from someone who does. Chris In lpr/common_source/pathnames.h #define _PATH_VFONT "/usr/libdata/vfont/" #define _PATH_VFONTB

`ifstated -n' more useful error message

2016-01-28 Thread Michael Reed
If fopen("/etc/ifstated.conf", ...) fails for whatever reason the error message isn't very helpful: $ ifstated -n ifstated: /etc/ifstated.conf With this patch: $ ./ifstated -n ifstated: /etc/ifstated.conf: No such file or directory Index: parse.y

Re: `ifstated -n' more useful error message

2016-01-28 Thread Michael McConville
Michael Reed wrote: > If fopen("/etc/ifstated.conf", ...) fails for whatever reason the > error message isn't very helpful: > > $ ifstated -n > ifstated: /etc/ifstated.conf > > With this patch: > > $ ./ifstated -n > ifstated: /etc/ifstated.conf: No such file or directory Committed.

Жидкий Каштан

2016-01-28 Thread sergei sergei
ЖИДКИЙ КАШТАН - УНИКАЛЬНОЕ НАТУРАЛЬНОЕ СРЕДСТВО ДЛЯ ЭФФЕКТИВНОГО ПОХУДЕНИЯ БЕЗ ВРЕДА ДЛЯ ЗДОРОВЬЯ. ПРИРОДНЫЙ ТОНИЗИРУЮЩИЙ И СЖИГАЮЩИЙ ЖИР ЭФФЕКТ. Плод произрастает в долине реки Амазонки, среди богатейшей флоры на планете, где давно славится своими свойствами, потому уже десятилетиями популярен

printjob.c

2016-01-28 Thread Chris Bennett
No need for bauds structure, since handled by cfsetspeed Chris Index: printjob.c === RCS file: /cvs/src/usr.sbin/lpr/lpd/printjob.c,v retrieving revision 1.56 diff -u -p -r1.56 printjob.c --- printjob.c 12 Jan 2016 23:35:13 -