[>]
http://marc.info/?l=openbsd-ports-cvs&m=140887002609347&w=2
obsd.info.14
openbsd-ports-cvs(obsdave,2) — All
2014-08-24 12:55:13
Module name: ports
Changes by: rpe@cvs.openbsd.org 2014/08/24 02:46:42
Modified files:
sysutils/ansible: Makefile distinfo
sysutils/ansible/pkg: PLIST
Log message:
Update ansible to 1.7.1
Besides performance enhancements and other bug fixes:
- Security fix to disallow specifying 'args:' as a string, which
could allow the insertion of extra module parameters through
variables.
OK aja@ sthen@
[>]
http://marc.info/?l=openbsd-cvs&m=140889101813682&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-24 18:55:08
Module name: src
Changes by: jsing@cvs.openbsd.org 2014/08/24 08:36:46
Modified files:
lib/libssl/src/ssl: d1_srvr.c s3_lib.c s3_srvr.c ssl_lib.c
ssl_locl.h
Log message:
Replace the remaining uses of ssl3_put_cipher_by_char() with s2n and a
ssl3_cipher_get_value() helper function, which returns the cipher suite
value for the given cipher.
ok miod@
[>]
http://marc.info/?l=openbsd-cvs&m=140889152313789&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-24 18:55:09
Module name: src
Changes by: doug@cvs.openbsd.org 2014/08/24 08:45:00
Modified files:
sbin/mountd : mountd.8 mountd.c
Log message:
Remove imaginary non-reserved port support from mountd.
This bug was reported by Julian Hsiao.
ok concept deraadt@, miod@
mountd.8 diff is from jmc@. ok doug@
mountd.c diff is from me. ok miod@
[>]
http://marc.info/?l=openbsd-cvs&m=140889213813933&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-24 19:55:07
Module name: src
Changes by: jsing@cvs.openbsd.org 2014/08/24 08:55:23
Modified files:
lib/libssl/src/apps: ciphers.c
Log message:
Let SSL_CIPHER_description() allocate the buffer for the description,
rather than passing in a fixed size buffer.
This is yet another example of a horribly designed API - if the given
buffer is NULL then SSL_CIPHER_description() allocates one for us (great!),
which we then need to free (no problem). However, if this allocation fails
it returns a pointer to a static string "OPENSSL_malloc Error" - obviously
bad things happen if we call free() with this pointer.
Unfortunately, there is no way of knowing that the function failed, other
than comparing the returned string against the string literal - so do that
before calling free()...
Joint work with beck@ during g2k14.
[>]
http://marc.info/?l=openbsd-cvs&m=140889468314613&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-24 19:55:09
Module name: xenocara
Changes by: okan@cvs.openbsd.org 2014/08/24 09:37:45
Modified files:
app/cwm : calmwm.h group.c screen.c
Log message:
gc->hidden has never consistently kept track of a group's state;
group_show() and group_hide() are not the only ways a group can change
state - if all clients in a group are either hidden or unhidden, then
that group's state should change, as well as the various EWMH ways.
Instead of trying to keep track in a wide variety of places, simply
query the clients in a group before needing to take action based on the
group's state. Solves long standing confusion of when a group is hidden
or not.
[>]
http://marc.info/?l=openbsd-cvs&m=140889647215112&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-24 20:55:10
Module name: src
Changes by: bcook@cvs.openbsd.org 2014/08/24 10:07:29
Modified files:
lib/libssl/src/apps: ocsp.c s_client.c s_server.c s_time.c
Log message:
Include <sys/select.h> to get select
These files currently depends on the wrapper <stdlib.h> file indirectly
including a header that provides select().
from Jonas 'Sortie' Termansen
ok deraadt@ tedu@
[>]
http://marc.info/?l=openbsd-cvs&m=140889652515139&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-24 20:55:11
Module name: src
Changes by: bcook@cvs.openbsd.org 2014/08/24 10:08:30
Modified files:
lib/libssl/src/crypto/bio: bss_dgram.c
Log message:
Include <sys/time.h> to get struct timeval
The crypto/bio/bss_dgram.c file assumes that another file indirectly
includes <stdlib.h> that includes <sys/time.h>.
from Jonas 'Sortie' Termansen
ok deraadt@ tedu@
[>]
http://marc.info/?l=openbsd-cvs&m=140889671215204&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-24 20:55:12
Module name: src
Changes by: bcook@cvs.openbsd.org 2014/08/24 10:11:39
Modified files:
lib/libssl/src/crypto/err: err.c
Log message:
constify strerror return value
There is no intention to modify the string returned by strerror and
doing so is forbidden by the standard.
from Jonas 'Sortie' Termansen
ok tedu@ deraadt@
[>]
http://marc.info/?l=openbsd-cvs&m=140890331516734&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-24 22:55:12
Module name: src
Changes by: zhuk@cvs.openbsd.org 2014/08/24 12:01:27
Modified files:
sys/dev/ic : if_wi_hostap.h if_wi_ieee.h
sys/net80211 : ieee80211_ioctl.h
Log message:
Fix wrong IEEE 802.11 ioctl's:
* SIOCG80211ALLNODES operates on struct ieee80211_nodereq_all, not
struct ieee80211_nodereq.
* Six SIOC* from wi(4) were using same codes with generic parts of
IEEE 802.11 framework. Things worked due to the fact that size
of data struct being passed is encoded in actual SIOC*, too.
This commit means that ifconfig and some ports will need to be rebuilt,
if any of affected SIOC* codes is used. Port bumps to follow.
First part okay reyk@, whole diff okay mpi@
Heavy prodding to commit now from deraadt@
[>]
http://marc.info/?l=openbsd-cvs&m=140890384916869&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-24 22:55:13
Module name: src
Changes by: schwarze@cvs.openbsd.org 2014/08/24 12:10:26
Modified files:
usr.sbin/rcctl : rcctl.sh
Log message:
Start all error messages with "rcctl: " such that it is clear where
they come from. While here, there is no need to check the argument
of needs_root() before displaying it, it is always provided.
ok ajacoutot@ jasper@
[>]
http://marc.info/?l=openbsd-cvs&m=140890687317590&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-24 23:55:09
Module name: src
Changes by: schwarze@cvs.openbsd.org 2014/08/24 13:00:46
Modified files:
usr.sbin/rcctl : rcctl.sh
Log message:
Whitelisting allowed services is safer and less confusing than
blacklisting auxiliary variables, and it makes the coupling
to rc.subr(8) less tight.
Feedback and OK ajacoutot@.
[>]
http://marc.info/?l=openbsd-cvs&m=140890946618453&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-24 23:55:11
Module name: src
Changes by: schwarze@cvs.openbsd.org 2014/08/24 13:44:02
Modified files:
usr.sbin/rcctl : rcctl.sh
Log message:
Delete the function svc_get_all().
In svc_is_avail(), this simplifies the code by getting rid of the loop.
When running "rcctl status", this allows to not run svc_is_special() -
which spawns a grep - for each and every service, resulting in a 20%
speedup. As a bonus, we get the special services listed at the end,
where they are easier to see than mixed in with the daemons.
ok ajacoutot@ jasper@
[>]
http://marc.info/?l=openbsd-cvs&m=140892366922063&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-25 03:55:08
Module name: src
Changes by: schwarze@cvs.openbsd.org 2014/08/24 17:40:41
Modified files:
usr.bin/mandoc : term_ps.c
Log message:
When support for bold italic font was added to the parsers and to the
generic parts of the formatters some time ago, the PostScript- and
PDF-specific part of the formatters was neglected.
Now pascal@ reports that mandoc -Tps throws an assertion on perl(1),
apparently because that manual actually uses bold italic font.
So here is an overdue implementation of bold italic font support for
PostScript and PDF output.
[>]
http://marc.info/?l=openbsd-cvs&m=140895053227666&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-25 11:55:06
Module name: www
Changes by: jsg@cvs.openbsd.org 2014/08/25 01:08:29
Modified files:
. : 21.html 22.html 23.html 24.html 25.html 26.html
27.html 28.html 29.html 30.html 31.html 32.html
33.html 34.html 35.html 36.html 37.html 38.html
39.html 40.html 41.html
Log message:
Correct old source archive names, xenocara isn't quite so old
and sys was named srcsys for a while.
[>]
http://marc.info/?l=openbsd-cvs&m=140895055127683&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-25 11:55:08
Module name: src
Changes by: brad@cvs.openbsd.org 2014/08/25 01:08:34
Removed files:
usr.sbin/bind/bin/check: Makefile.in check-tool.c check-tool.h
named-checkconf.8 named-checkconf.c
named-checkconf.docbook
named-checkconf.html named-checkzone.8
named-checkzone.c
named-checkzone.docbook
named-checkzone.html
usr.sbin/bind/bin/dnssec: Makefile.in dnssec-keygen.8
dnssec-keygen.c dnssec-keygen.docbook
dnssec-keygen.html dnssec-signzone.8
dnssec-signzone.c
dnssec-signzone.docbook
dnssec-signzone.html dnssectool.c
dnssectool.h
usr.sbin/bind/bin/named: Makefile.in builtin.c client.c config.c
control.c controlconf.c interfacemgr.c
listenlist.c log.c logconf.c lwaddr.c
lwdclient.c lwderror.c lwdgabn.c
lwdgnba.c lwdgrbn.c lwdnoop.c lwresd.8
lwresd.c lwresd.docbook lwresd.html
lwsearch.c main.c named.8 named.conf.5
named.conf.docbook named.conf.html
named.docbook named.html notify.c
query.c server.c sortlist.c tkeyconf.c
tsigconf.c update.c xfrout.c zoneconf.c
usr.sbin/bind/bin/named/include/named: builtin.h client.h
config.h control.h
globals.h interfacemgr.h
listenlist.h log.h
logconf.h lwaddr.h
lwdclient.h lwresd.h
lwsearch.h main.h
notify.h ns_smf_globals.h
query.h server.h
sortlist.h tkeyconf.h
tsigconf.h types.h
update.h xfrout.h
zoneconf.h
usr.sbin/bind/bin/named/unix: Makefile.in os.c
usr.sbin/bind/bin/named/unix/include/named: os.h
usr.sbin/bind/bin/nsupdate: Makefile.in nsupdate.8 nsupdate.c
nsupdate.docbook nsupdate.html
usr.sbin/bind/bin/rndc: Makefile.in rndc-confgen.8
rndc-confgen.c rndc-confgen.docbook
rndc-confgen.html rndc.8 rndc.c
rndc.conf rndc.conf.5 rndc.conf.docbook
rndc.conf.html rndc.docbook rndc.html
util.c util.h
usr.sbin/bind/bin/rndc/include/rndc: os.h
usr.sbin/bind/bin/rndc/unix: Makefile.in os.c
usr.sbin/bind/bin/tests/system/masterformat: clean.sh setup.sh
tests.sh
usr.sbin/bind/bin/tests/system/masterformat/ns1: compile.sh
example.db
named.conf
usr.sbin/bind/bin/tests/system/masterformat/ns2: named.conf
usr.sbin/bind/bin/tests/system/rrsetorder: clean.sh
dig.out.cyclic.good1
dig.out.cyclic.good2
dig.out.cyclic.good3
dig.out.cyclic.good4
dig.out.fixed.good
dig.out.random.good1
dig.out.random.good10
dig.out.random.good11
dig.out.random.good12
dig.out.random.good13
dig.out.random.good14
dig.out.random.good15
dig.out.random.good16
dig.out.random.good17
dig.out.random.good18
dig.out.random.good19
dig.out.random.good2
dig.out.random.good20
dig.out.random.good21
dig.out.random.good22
dig.out.random.good23
dig.out.random.good24
dig.out.random.good3
dig.out.random.good4
dig.out.random.good5
dig.out.random.good6
dig.out.random.good7
dig.out.random.good8
dig.out.random.good9
tests.sh
usr.sbin/bind/bin/tests/system/rrsetorder/ns1: named.conf
root.db
usr.sbin/bind/bin/tests/system/rrsetorder/ns2: named.conf
usr.sbin/bind/bin/tests/system/rrsetorder/ns3: named.conf
usr.sbin/bind/bin/tests/system/tsig: clean.sh tests.sh
usr.sbin/bind/bin/tests/system/tsig/ns1: example.db named.conf
usr.sbin/bind/bin/tests/system/zonechecks: a.db aaaa.db clean.sh
cname.db dname.db
noaddress.db
nxdomain.db tests.sh
usr.sbin/bind/doc: Makefile.in
usr.sbin/bind/doc/arm: Bv9ARM-book.xml Bv9ARM.ch01.html
Bv9ARM.ch02.html Bv9ARM.ch03.html
Bv9ARM.ch04.html Bv9ARM.ch05.html
Bv9ARM.ch06.html Bv9ARM.ch07.html
Bv9ARM.ch08.html Bv9ARM.ch09.html
Bv9ARM.ch10.html Bv9ARM.html Bv9ARM.pdf
Makefile.in README-SGML isc-logo.eps
isc-logo.pdf latex-fixup.pl man.dig.html
man.dnssec-keygen.html
man.dnssec-signzone.html man.host.html
man.named-checkconf.html
man.named-checkzone.html man.named.html
man.rndc-confgen.html man.rndc.conf.html
man.rndc.html
usr.sbin/bind/doc/misc: Makefile.in dnssec format-options.pl
ipv6 migration migration-4to9 options
rfc-compliance roadmap sdb
usr.sbin/bind/doc/xsl: Makefile.in copyright.xsl
isc-docbook-chunk.xsl.in
isc-docbook-html.xsl.in
isc-docbook-latex-mappings.xml
isc-docbook-latex.xsl.in
isc-docbook-text.xsl isc-manpage.xsl.in
pre-latex.xsl
Log message:
Start removing unused documentation and the server and related binaries source
code.
[>]
http://marc.info/?l=openbsd-cvs&m=140895305128430&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-25 11:55:13
Module name: src
Changes by: doug@cvs.openbsd.org 2014/08/25 01:50:26
Modified files:
bin/systrace : systrace.c
lib/libc/gen : auth_subr.c
lib/libutil : check_expire.c
libexec/ftpd : ftpd.c monitor.c
sbin/iked : ikev2_msg.c
usr.bin/gzsig : sign.c ssh.c
usr.sbin/cron : entry.c
usr.sbin/ikectl: ikeca.c
usr.sbin/ldapd : ldapd.c
usr.sbin/pwd_mkdb: pwd_mkdb.c
usr.sbin/smtpd : smtpd.c ssl.c
Log message:
Delete secret or secret-derived data with explicit_bzero.
concept ok deraadt@
diff looks ok tedu@