CVS: cvs.openbsd.org: www

2019-04-07 Thread Pamela Mosiejczuk
CVSROOT:/cvs
Module name:www
Changes by: pam...@cvs.openbsd.org  2019/04/07 20:41:25

Modified files:
.  : plus61.html plus63.html plus64.html 

Log message:
repair canonical links
ok florian



CVS: cvs.openbsd.org: www

2019-04-07 Thread Ingo Schwarze
CVSROOT:/cvs
Module name:www
Changes by: schwa...@cvs.openbsd.org2019/04/07 17:00:28

Modified files:
.  : 65.html 

Log message:
mandoc 1.14.5, and minor entries for install(1) and syslog.conf(5)



CVS: cvs.openbsd.org: src

2019-04-07 Thread Nicholas Marriott
CVSROOT:/cvs
Module name:src
Changes by: n...@cvs.openbsd.org2019/04/07 14:18:20

Modified files:
usr.bin/tmux   : options-table.c 

Log message:
Current window style also needs to be tested for default.



CVS: cvs.openbsd.org: www

2019-04-07 Thread Stuart Henderson
CVSROOT:/cvs
Module name:www
Changes by: st...@cvs.openbsd.org   2019/04/07 12:56:26

Modified files:
faq: current.html 

Log message:
mention the bug with libreoffice password-protected .od* files;
save a copy with the password removed before updating, you may re-add
the password after updating to post-7/April packages.



CVS: cvs.openbsd.org: src

2019-04-07 Thread Theo Buehler
CVSROOT:/cvs
Module name:src
Changes by: t...@cvs.openbsd.org2019/04/07 10:41:16

Modified files:
regress/lib/libssl/ssl: ssltest.c 

Log message:
exitting -> exiting

>From Michael Scovetta, PR #108



CVS: cvs.openbsd.org: src

2019-04-07 Thread Joel Sing
CVSROOT:/cvs
Module name:src
Changes by: js...@cvs.openbsd.org   2019/04/07 10:35:50

Modified files:
lib/libcrypto/asn1: tasn_prn.c 

Log message:
Revert tasn_prn.c r1.18.

In this code, just because something is cast to a type doesn't mean it is
necessarily that type - in this case we cannot check the length of the
ASN1_STRING here, since it might be another data type and later handled
as an int (for example, in the V_ASN1_BOOLEAN case).

We will revisit this post release.

ok tb@



CVS: cvs.openbsd.org: src

2019-04-07 Thread Marc Espie
CVSROOT:/cvs
Module name:src
Changes by: es...@cvs.openbsd.org   2019/04/07 06:30:39

Modified files:
usr.sbin/pkg_add/OpenBSD: AddDelete.pm FwUpdate.pm 

Log message:
don't silence children under fw_update, since ftp(1) can tell us
what's wrong with the network.

okay deraadt@



CVS: cvs.openbsd.org: src

2019-04-07 Thread Claudio Jeker
CVSROOT:/cvs
Module name:src
Changes by: clau...@cvs.openbsd.org 2019/04/07 04:52:30

Modified files:
usr.sbin/bgpd  : session.c session.h 

Log message:
Be more careful when setting timeout to 0 because there is pending work
on a peer. Just checking the peer read buffer size is not enough since
the data present could be a partial message and so the SE should sleep
until a new POLLIN event fires. Adjust the logic by adding a rpending
flag that is only set if reading the session buffer was exited early
because MSG_PROCESS_LIMIT was hit.
OK benno@



CVS: cvs.openbsd.org: src

2019-04-07 Thread Marc Espie
CVSROOT:/cvs
Module name:src
Changes by: es...@cvs.openbsd.org   2019/04/07 04:44:25

Modified files:
usr.sbin/pkg_add/OpenBSD: UpdateSet.pm 

Log message:
some scenarios may call match_locations on a DeleteSet.
there is no external source, so return []

(noticed by Anton Karpov, not sure how to reproduce)