Re: CVS: cvs.openbsd.org: src

2018-09-01 Thread Remi Locherer
On Sat, Sep 01, 2018 at 01:21:10PM -0600, Remi Locherer wrote:
> CVSROOT:  /cvs
> Module name:  src
> Changes by:   r...@cvs.openbsd.org2018/09/01 13:21:10
> 
> Modified files:
>   usr.sbin/ospf6d: control.c control.h ospf6d.c ospf6d.h ospfe.c 
> 
> Log message:
> Prevent ospf6d from starting when another process is listening on the
> control socket.
> 
> ok florian@

and ok benno@



CVS: cvs.openbsd.org: src

2018-09-01 Thread Gilles Chehade
CVSROOT:/cvs
Module name:src
Changes by: gil...@cvs.openbsd.org  2018/09/01 15:20:32

Modified files:
usr.sbin/smtpd : parse.y 

Log message:
properly deal with MAILER-DAEMON sender in LMTP

reported and fix tested by Mark Kane



CVS: cvs.openbsd.org: src

2018-09-01 Thread joshua stein
CVSROOT:/cvs
Module name:src
Changes by: j...@cvs.openbsd.org2018/09/01 14:50:16

Modified files:
sys/dev/i2c: ims.c 

Log message:
Match on interfaces with Digitizers/Touchscreen collections, as long
as they have an X usage.

Should get basic touchscreen functionality on some common
HID-over-i2c devices like laptops.



CVS: cvs.openbsd.org: src

2018-09-01 Thread joshua stein
CVSROOT:/cvs
Module name:src
Changes by: j...@cvs.openbsd.org2018/09/01 14:48:00

Modified files:
sys/dev/hid: hidms.c 

Log message:
For touchscreen devices, use the first HUG_X/Y usage pages found
when looking for logical min/max of screen.

ok kettenis



CVS: cvs.openbsd.org: src

2018-09-01 Thread Gilles Chehade
CVSROOT:/cvs
Module name:src
Changes by: gil...@cvs.openbsd.org  2018/09/01 13:56:28

Modified files:
usr.sbin/smtpd : smtpd.conf.5 

Log message:
clarify the forward-only delivery action



CVS: cvs.openbsd.org: src

2018-09-01 Thread Remi Locherer
CVSROOT:/cvs
Module name:src
Changes by: r...@cvs.openbsd.org2018/09/01 13:21:10

Modified files:
usr.sbin/ospf6d: control.c control.h ospf6d.c ospf6d.h ospfe.c 

Log message:
Prevent ospf6d from starting when another process is listening on the
control socket.

ok florian@



CVS: cvs.openbsd.org: src

2018-09-01 Thread Alexander Bluhm
CVSROOT:/cvs
Module name:src
Changes by: bl...@cvs.openbsd.org   2018/09/01 12:09:14

Modified files:
usr.sbin/relayd: relayd.c 

Log message:
Accidentally relayd(8) closed file descriptor 0 in the pfe child
process.  If env->sc_snmp is initialized with 0, snmp_init() closes
it.  Set it to -1 to prevent the close(2).
OK reyk@ benno@ millert@



CVS: cvs.openbsd.org: src

2018-09-01 Thread Theo de Raadt
CVSROOT:/cvs
Module name:src
Changes by: dera...@cvs.openbsd.org 2018/09/01 11:02:12

Modified files:
sys/kern   : vfs_syscalls.c 

Log message:
Fix errno for post-lock unveil calls
from Jan Klemkow



CVS: cvs.openbsd.org: src

2018-09-01 Thread Kenneth R Westerback
CVSROOT:/cvs
Module name:src
Changes by: k...@cvs.openbsd.org2018/09/01 10:55:29

Modified files:
usr.sbin/installboot: bootstrap.c hppa_installboot.c 
  installboot.h landisk_installboot.c 

Log message:
Remove 'overlap_allowance' parameter from bootstrap().

It was added to support Vax. Vax is dead Jim.

ok deraadt@



CVS: cvs.openbsd.org: src

2018-09-01 Thread Theo Buehler
CVSROOT:/cvs
Module name:src
Changes by: t...@cvs.openbsd.org2018/09/01 10:23:15

Modified files:
lib/libcrypto/ec: ec_asn1.c 

Log message:
Tweak comment.



CVS: cvs.openbsd.org: src

2018-09-01 Thread Michael Mikonos
CVSROOT:/cvs
Module name:src
Changes by: m...@cvs.openbsd.org2018/09/01 06:03:31

Modified files:
usr.sbin/smtpd : smtp_client.c 

Log message:
sync fatalx() message between smtp_client_{state,response}; ok stsp@ gilles@



CVS: cvs.openbsd.org: src

2018-09-01 Thread Stefan Sperling
CVSROOT:/cvs
Module name:src
Changes by: s...@cvs.openbsd.org2018/09/01 02:20:56

Modified files:
sys/net80211   : ieee80211_ioctl.c ieee80211_node.c 
 ieee80211_var.h 

Log message:
Make 'ifconfig nwid' override 'ifconfig join'.

There was no way to override a decision made by join's network
selection algorithm (apart from disabling the feature by clearing
the join list). Automatic selection is based on heuristics which
cannot always guess correctly so we need to provide an override.

One specific problem was that if 'nwid foo' and 'nwid bar' were
both visible in the scan and only 'nwid foo' was a member of the
join list, then there was no way at all to connect to 'nwid bar'.
The wireless stack would keep selecting 'nwid foo' instead.

'ifconfig iwm0 nwid bar' command will now disable automatic
network selection and force the use of ESSID 'bar'.
Any of these commands will re-enable automatic network selection:
ifconfig iwm0 -nwid
ifconfig iwm0 nwid ''
ifconfig iwm0 join some-network-id

ok phessler@ deraadt@