CVS: cvs.openbsd.org: src

2017-09-18 Thread Darren Tucker
CVSROOT:/cvs
Module name:src
Changes by: dtuc...@cvs.openbsd.org 2017/09/18 06:03:24

Modified files:
usr.bin/ssh: mux.c 

Log message:
Prevent type mismatch warning in debug on platforms where sig_atomic_t
!= int.  ok djm@



CVS: cvs.openbsd.org: src

2017-09-18 Thread Darren Tucker
CVSROOT:/cvs
Module name:src
Changes by: dtuc...@cvs.openbsd.org 2017/09/18 03:41:52

Modified files:
usr.bin/ssh: servconf.c 

Log message:
Add braces missing after channels refactor.  ok markus@



CVS: cvs.openbsd.org: src

2017-09-18 Thread Alexander Bluhm
CVSROOT:/cvs
Module name:src
Changes by: bl...@cvs.openbsd.org   2017/09/18 09:36:47

Modified files:
regress/usr.sbin/relayd: args-http-chunked-callback.pl 

Log message:
Avoid race in relayd test that uses an invalid chunked header.  Wait
until server has started, then expect error message in server log.



CVS: cvs.openbsd.org: src

2017-09-18 Thread Todd C . Miller
CVSROOT:/cvs
Module name:src
Changes by: mill...@cvs.openbsd.org 2017/09/18 09:57:02

Modified files:
lib/libc/gen   : directory.3 

Log message:
Document readdir_r() return value and update style of the example
code.  Adapted from a diff by Ross L Richardson.



CVS: cvs.openbsd.org: src

2017-09-18 Thread Marc Espie
CVSROOT:/cvs
Module name:src
Changes by: es...@cvs.openbsd.org   2017/09/18 07:01:10

Modified files:
usr.sbin/pkg_add/OpenBSD: PkgCreate.pm Signature.pm 

Log message:
-V option for pkg_create and incorporate version into signatures.



CVS: cvs.openbsd.org: src

2017-09-18 Thread Marc Espie
CVSROOT:/cvs
Module name:src
Changes by: es...@cvs.openbsd.org   2017/09/18 07:40:32

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

Log message:
better diagnostics



CVS: cvs.openbsd.org: src

2017-09-18 Thread Marc Espie
CVSROOT:/cvs
Module name:src
Changes by: es...@cvs.openbsd.org   2017/09/18 08:10:11

Modified files:
usr.sbin/pkg_add: package.5 pkg_create.1 pkg_info.1 

Log message:
document @version



CVS: cvs.openbsd.org: src

2017-09-18 Thread Mike Belopuhov
CVSROOT:/cvs
Module name:src
Changes by: mi...@cvs.openbsd.org   2017/09/18 13:45:52

Modified files:
share/man/man4 : hyperv.4 

Log message:
Mention that Generation 2 Virtual Machines are currently not supported



CVS: cvs.openbsd.org: src

2017-09-18 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:src
Changes by: jas...@cvs.openbsd.org  2017/09/18 14:09:34

Modified files:
distrib/alpha/bsd.rd: Makefile 
distrib/alpha/common: Makefile.inc 
distrib/alpha/inst-common: Makefile.inc 
distrib/hppa/ramdisk: Makefile 
distrib/sparc64/bsd.rd: Makefile 

Log message:
drop ${STRIP}, it's just 'strip'

ok deraadt@



CVS: cvs.openbsd.org: src

2017-09-18 Thread Jasper Lievisse Adriaanse
CVSROOT:/cvs
Module name:src
Changes by: jas...@cvs.openbsd.org  2017/09/18 14:13:53

Modified files:
distrib/alpha/bsd.rd: Makefile 
distrib/alpha/common: Makefile.inc 
distrib/hppa/ramdisk: Makefile 
distrib/ramdisk: Makefile 
distrib/sparc64/bsd.rd: Makefile 
distrib/sparc64/ramdisk: Makefile 
distrib/sparc64/ramdiskB: Makefile 

Log message:
drop ${GZIPCMD} and just use 'gzip'



CVS: cvs.openbsd.org: src

2017-09-18 Thread Damien Miller
CVSROOT:/cvs
Module name:src
Changes by: d...@cvs.openbsd.org2017/09/18 22:24:22

Modified files:
usr.bin/ssh: clientloop.c 

Log message:
fix use-after-free in ~^Z escape handler path, introduced in channels.c
refactor; spotted by millert@ "makes sense" deraadt@



CVS: cvs.openbsd.org: src

2017-09-18 Thread Martin Pieuchot
CVSROOT:/cvs
Module name:src
Changes by: m...@cvs.openbsd.org2017/09/18 01:42:52

Modified files:
sbin/isakmpd   : exchange.c exchange.h 

Log message:
Check for failures of exchange_establish_p{1,2}() and call the given
`finalize' function with the `fail' argument when this happen.

Introduce some sanity checks in exchange_free() to be able to call if
even if the data structure isn't completely initialized.

Plug memory leaks when exchange_establish() fails.  While here fix a
double free in one of the error paths.

Based on a diff from hshoexer@, ok stsp@, markus@