RSS
Pages: 1 ... 9 10 11 12 13 14 15 16 17 18 19 20 21 22
[>] http://marc.info/?l=openbsd-cvs&m=140942190524357&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-30 22:55:10


Module name: src
Changes by: schwarze@cvs.openbsd.org 2014/08/30 12:04:52

Modified files:
usr.bin/mandoc : apropos.1 main.c man.1 mandoc.1

Log message:
Introduce a man(1) -l option as an alias for mandoc -a.
Basically, this does the same as man -l in Linux man-db.
The point is that now all functionality of the combined tool
is reachable from the man(1) command name:
apropos = man -k, whatis = man -f, mandoc = man -cl.

Originally suggested by Carsten dot Kunze at arcor dot de,
current maintainer of the Heirloom Documentation Tools.

While here, add various missing information to the usage()
and to the manuals.

[>] http://marc.info/?l=openbsd-cvs&m=140942906226025&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 00:55:09


Module name: xenocara
Changes by: matthieu@cvs.openbsd.org 2014/08/30 14:03:43

Modified files:
. : MODULES 3RDPARTY

Log message:
update

[>] http://marc.info/?l=openbsd-cvs&m=140942926326084&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 00:55:10


Module name: xenocara
Changes by: matthieu@cvs.openbsd.org 2014/08/30 14:07:08

Modified files:
. : 3RDPARTY

Log message:
fix xterm entry

[>] http://marc.info/?l=openbsd-cvs&m=140943068826421&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 00:55:11


Module name: src
Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 14:31:03

Modified files:
usr.sbin/sysmerge: sysmerge.sh

Log message:
Refactor sum checks; all the information we need is already available so
not need to create sum files anymore (except in pkg mode).

[>] http://marc.info/?l=openbsd-cvs&m=140943083226444&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 00:55:13


Module name: src
Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 14:33:27

Modified files:
etc/rc.d : rc.subr

Log message:
Make it possible to pass a specific error code to _rc_err().

ok robert@ schwarze@

[>] http://marc.info/?l=openbsd-cvs&m=140943109726484&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 00:55:14


Module name: src
Changes by: ajacoutot@cvs.openbsd.org 2014/08/30 14:37:46

Modified files:
usr.sbin/rcctl : rcctl.sh

Log message:
When a service is not available, return ENOENT.
Previous to this commit it was not possible to know whether a service
existed without parsing the output of 'rcctl status' which is very
expensive.

req. by armani@
ok robert@ schwarze@

[>] http://marc.info/?l=openbsd-cvs&m=140943428527207&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 01:55:07


Module name: src
Changes by: guenther@cvs.openbsd.org 2014/08/30 15:30:23

Modified files:
libexec/ld.so/sparc64: rtld_machine.c

Log message:
Make the handling of PLT entries above the 32k mark thread-safe.
Also, make a comment not lie: use the V9 ISA's relative branch
immediate instruction for short (with in 2^19 words) PLT branches.

ok miod@

[>] http://marc.info/?l=openbsd-cvs&m=140944272528834&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 04:55:06


Module name: src
Changes by: guenther@cvs.openbsd.org 2014/08/30 17:51:42

Modified files:
lib/libpthread/man: pthread_create.3

Log message:
Xr __tfork instead of fork

[>] http://marc.info/?l=openbsd-cvs&m=140944699029425&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 05:55:06


Module name: src
Changes by: miod@cvs.openbsd.org 2014/08/30 19:02:51

Modified files:
gnu/lib/libiberty: Makefile.bsd-wrapper shlib_version
gnu/lib/libiberty/include: hashtab.h
Removed files:
gnu/lib/libiberty/src: oldhashtab.c

Log message:
Now that gcc 2.95 is out of the tree, get rid of the old hash table interface
it was the only user of. Bump major.

[>] http://marc.info/?l=openbsd-cvs&m=140944705729427&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 05:55:07


Module name: src
Changes by: miod@cvs.openbsd.org 2014/08/30 19:04:01

Modified files:
gnu/lib/libiberty/src: pexecute.c pexecute.txh

Log message:
Finally ``revert'' to the recent pexecute interface, now that we do not need
to support gcc 2.95. Tested on gcc 3 and gcc 4 platforms, riding on the
major bump.

[>] http://marc.info/?l=openbsd-cvs&m=140944938129840&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 05:55:08


Module name: src
Changes by: guenther@cvs.openbsd.org 2014/08/30 19:42:36

Modified files:
include : unistd.h
lib/libc/gen : signal.3
lib/libc : shlib_version
lib/libc/sys : Makefile.inc accept.2 dup.2 pipe.2 recv.2
sigaction.2 socket.2 socketpair.2
sys/kern : kern_descrip.c sys_pipe.c syscalls.master
uipc_socket.c uipc_syscalls.c uipc_usrreq.c
sys/sys : domain.h socket.h un.h

Log message:
Add additional kernel interfaces for setting close-on-exec on fds
when creating them: pipe2(), dup3(), accept4(), MSG_CMSG_CLOEXEC,
SOCK_CLOEXEC. Includes SOCK_NONBLOCK support.

ok matthew@

[>] http://marc.info/?l=openbsd-cvs&m=140944965729870&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 05:55:10


Module name: src
Changes by: guenther@cvs.openbsd.org 2014/08/30 19:47:17

Modified files:
sys/sys : syscall.h syscallargs.h
sys/kern : init_sysent.c syscalls.c

Log message:
regen

[>] http://marc.info/?l=openbsd-cvs&m=140945170330239&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 06:55:07


Module name: src
Changes by: guenther@cvs.openbsd.org 2014/08/30 20:21:18

Modified files:
include : stdlib.h
lib/libc/gen : popen.3 popen.c posix_spawn.c
posix_spawn_file_actions_addopen.3
lib/libc/stdio : Makefile.inc fdopen.c flags.c fopen.3 freopen.c
mktemp.3 mktemp.c

Log message:
Add additional userland interfaces for setting close-on-exec on fds
when creating them: mkostemp(), mkostemps(), the 'e' mode letter for
fopen(), freopen(), fdopen(), and popen(). The close-on-exec flag will
be cleared by the action created by posix_spawn_file_actions_adddup2().

Also, add support for the C11 'x' mode letter for fopen() and freopen(),
setting O_EXCL when possibly creating files.

Note: this requires kernel support for pipe2() and dup3()!

ok millert@

[>] http://marc.info/?l=openbsd-cvs&m=140945207230277&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 06:55:08


Module name: src
Changes by: guenther@cvs.openbsd.org 2014/08/30 20:27:37

Modified files:
sys/sys : socket.h
lib/libc/net : Makefile.inc
Added files:
lib/libc/net : sockatmark.3 sockatmark.c

Log message:
Add sockatmark()

ok millert@ manpage feedback jmc@

[>] http://marc.info/?l=openbsd-cvs&m=140945774531041&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 08:55:06


Module name: src
Changes by: guenther@cvs.openbsd.org 2014/08/30 22:02:08

Modified files:
include : unistd.h
lib/librthread : rthread.h
lib/libc/sys : Makefile.inc
Added files:
lib/libc/sys : getthrid.2

Log message:
Declare and document getthrid()

indirectly prodded by krw@

[>] http://marc.info/?l=openbsd-cvs&m=140945785631053&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 08:55:07


Module name: src
Changes by: guenther@cvs.openbsd.org 2014/08/30 22:04:01

Modified files:
include/arpa : inet.h

Log message:
inet_nsap_{addr,ntoa}() were removed on 2013/12/17

[>] http://marc.info/?l=openbsd-cvs&m=140945791031057&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 08:55:09


Module name: src
Changes by: guenther@cvs.openbsd.org 2014/08/30 22:04:38

Modified files:
include : grp.h

Log message:
setgrfile() isn't implemented

[>] http://marc.info/?l=openbsd-cvs&m=140945802931070&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 08:55:10


Module name: src
Changes by: guenther@cvs.openbsd.org 2014/08/30 22:06:37

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

Log message:
They're thread IDs, not PIDs. The wording is a bit clunky, but closer
to the truth

[>] http://marc.info/?l=openbsd-cvs&m=140946701532269&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 10:55:06


Module name: src
Changes by: jmc@cvs.openbsd.org 2014/08/31 00:36:30

Modified files:
lib/libc/stdio : fopen.3 mktemp.3

Log message:
provide section numbers for xrs;

[>] http://marc.info/?l=openbsd-cvs&m=140946726332297&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 10:55:07


Module name: src
Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 00:40:46

Modified files:
usr.sbin/sysmerge: sysmerge.sh

Log message:
Do not overwrite examplessum; use the one we are provided with.

[>] http://marc.info/?l=openbsd-cvs&m=140946732832327&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 10:55:08


Module name: src
Changes by: jmc@cvs.openbsd.org 2014/08/31 00:41:24

Modified files:
lib/libc/sys : getthrid.2

Log message:
tweaks;

[>] http://marc.info/?l=openbsd-cvs&m=140946798932458&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 11:55:07


Module name: src
Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 00:52:46

Modified files:
usr.sbin/rcctl : rcctl.8

Log message:
Document that exit code 2 indicates a non-existent service.

[>] http://marc.info/?l=openbsd-cvs&m=140946892232605&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 11:55:09


Module name: src
Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 01:08:25

Modified files:
usr.sbin/rcctl : rcctl.sh

Log message:
No need to update daemon_flags in the enviroment anymore since the
recent change to append_to_pkg_scripts().

[>] http://marc.info/?l=openbsd-cvs&m=140947030100617&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 11:55:10


Module name: src
Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 01:31:26

Modified files:
usr.sbin/sysmerge: sysmerge.sh

Log message:
When we are not running in pkg mode, /usr/share/sysmerge/examplessum
should always be part of the temproot, so there's not need to check for its
existence.

[>] http://marc.info/?l=openbsd-cvs&m=140947056700644&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 11:55:11


Module name: src
Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 01:35:52

Modified files:
usr.sbin/sysmerge: sysmerge.sh

Log message:
Only use the sum files corresponding to the mode we run in.

[>] http://marc.info/?l=openbsd-cvs&m=140947201600984&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 12:55:08


Module name: src
Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 01:59:58

Modified files:
usr.sbin/sysmerge: sysmerge.sh

Log message:
Simplify examples files handling.

[>] http://marc.info/?l=openbsd-cvs&m=140947398401338&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 12:55:09


Module name: src
Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 02:32:41

Modified files:
usr.sbin/sysmerge: sysmerge.sh

Log message:
In pkg mode, warn if the directory we want to copy the @sample file into
does not exist and is not a @sample because we have no knowledge of the
required owner/group/mode so we cannot create it.

[>] http://marc.info/?l=openbsd-cvs&m=140947684001840&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 13:55:07


Module name: src
Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 03:20:06

Modified files:
usr.sbin/sysmerge: sysmerge.sh

Log message:
Make sysmerge(8) completely silent by default when no file is modified.

[>] http://marc.info/?l=openbsd-cvs&m=140947753801966&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 13:55:09


Module name: src
Changes by: miod@cvs.openbsd.org 2014/08/31 03:31:55

src/lib/libc/uuid

Update of /cvs/src/lib/libc/uuid
In directory cvs.openbsd.org:/cvs.d/hack/miod/traba/src/lib/libc/uuid

Log Message:
Directory /cvs/src/lib/libc/uuid added to the repository

[>] http://marc.info/?l=openbsd-cvs&m=140947781802003&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 13:55:10


Module name: src
Changes by: miod@cvs.openbsd.org 2014/08/31 03:36:39

Modified files:
include : Makefile
lib/libc : Makefile.inc
sys/sys : uuid.h
Added files:
include : uuid.h
lib/libc/uuid : Makefile.inc uuid.3 uuid_compare.c
uuid_create.c uuid_create_nil.c uuid_equal.c
uuid_from_string.c uuid_hash.c uuid_is_nil.c
uuid_stream.c uuid_to_string.c

Log message:
Add uuid support routines to libc. From FreeBSD via NetBSD via Bitrig via
Markus Mueller.

[>] http://marc.info/?l=openbsd-cvs&m=140948189102862&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 14:55:08


Module name: src
Changes by: ajacoutot@cvs.openbsd.org 2014/08/31 04:44:37

Modified files:
usr.sbin/rcctl : rcctl.sh

Log message:
Add Ingo's copyright as per his request.

[>] http://marc.info/?l=openbsd-cvs&m=140949243005040&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 17:55:10


Module name: src
Changes by: tobiasu@cvs.openbsd.org 2014/08/31 07:40:03

Modified files:
gnu/usr.bin/binutils/binutils: addr2line.c ar.c coffdump.c
cxxfilt.c deflex.c dlltool.c
dllwrap.c nlmconv.c nm.c
objcopy.c objdump.c rclex.c
readelf.c size.c srconv.c
strings.c sysdump.c windres.c
gnu/usr.bin/binutils/gas: as.c itbl-lex.c
gnu/usr.bin/binutils/gprof: gprof.c
gnu/usr.bin/binutils/include: libiberty.h
gnu/usr.bin/binutils/ld: ldmain.c

Log message:
Backport @file support from binutils-2.17

@file allows reading command line arguments from a file. Gcc now uses this to
pass very long arguments lists to ld.

ok guenther@ miod@

[>] http://marc.info/?l=openbsd-cvs&m=140949305005182&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 17:55:11


Module name: xenocara
Changes by: matthieu@cvs.openbsd.org 2014/08/31 07:50:27

Modified files:
lib/fontconfig/conf.d: Makefile

Log message:
Install relative symlinks in conf.d. Noticed by ajacoutot@

[>] http://marc.info/?l=openbsd-cvs&m=140950042606835&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 20:55:08


> Add uuid support routines to libc.

Has there been any consideration how this will interact with ports
where we already have two uuid implementations getting into each
other's way?

--
Christian "naddy" Weisgerber naddy@mips.inka.de

[>] http://marc.info/?l=openbsd-cvs&m=140950397207807&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 21:55:08


Module name: xenocara
Changes by: matthieu@cvs.openbsd.org 2014/08/31 10:52:26

Modified files:
distrib/sets : makeflist makelocatedb maketars
Removed files:
distrib/sets : genlists nocreate

Log message:
Get rid of the 'nocreate' feature, unused for 6 years and stop
building the xetcXX.tgz set

[>] http://marc.info/?l=openbsd-cvs&m=140950789909302&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 22:55:07


Module name: xenocara
Changes by: matthieu@cvs.openbsd.org 2014/08/31 11:57:40

Modified files:
lib/libSM/src : sm_genid.c

Log message:
Fix the HAVE_UUID_CREATE code now that its gets used:

- fix temp declaration
- use snprintf instread of strcpy()

[>] http://marc.info/?l=openbsd-cvs&m=140951286110852&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-08-31 23:55:07


Module name: src
Changes by: bluhm@cvs.openbsd.org 2014/08/31 13:20:44

Modified files:
sys/netinet6 : in6.h
lib/libc/net : vars6.c

Log message:
Make the in6addr constant declarations and definitions consistent
in kernel and user land.
OK florian@ mpi@

[>] http://marc.info/?l=openbsd-cvs&m=140951515111383&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-01 00:55:10


Module name: src
Changes by: miod@cvs.openbsd.org 2014/08/31 13:58:53

Modified files:
lib/libc/uuid : uuid_stream.c

Log message:
Fix incorrect behaviour by syncing with FreeBSD; reported by Jonas 'Sortie'
Termansen, thanks!

[>] http://marc.info/?l=openbsd-cvs&m=140951517611386&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-01 00:55:11


Module name: src
Changes by: miod@cvs.openbsd.org 2014/08/31 13:59:18

Modified files:
lib/libc/uuid : uuid_compare.c

Log message:
Sync with FreeBSD. No functional change but more readable code.

[>] http://marc.info/?l=openbsd-cvs&m=140951520511410&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-01 00:55:12


Module name: src
Changes by: miod@cvs.openbsd.org 2014/08/31 13:59:35

Modified files:
lib/libc/uuid : uuid.3

Log message:
Don't .Xr uuidgen(1) yet.

[>] http://marc.info/?l=openbsd-cvs&m=140951585811571&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-01 00:55:14


Module name: src
Changes by: rpe@cvs.openbsd.org 2014/08/31 14:10:36

Modified files:
distrib/miniroot: install.sub

Log message:
The xetc set is now part of xbase and not distributed separately anymore.
Extract it from xbase during installation.

OK ajacoutot@

[>] http://marc.info/?l=openbsd-cvs&m=140951620211648&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-01 00:55:15


Module name: src
Changes by: miod@cvs.openbsd.org 2014/08/31 14:15:54

Modified files:
sys/kern : kern_uuid.c

Log message:
Sync enc/dec routines with libc.

[>] http://marc.info/?l=openbsd-cvs&m=140951661011760&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-01 00:55:16


Module name: src
Changes by: guenther@cvs.openbsd.org 2014/08/31 14:23:10

Modified files:
lib/librthread : rthread_cancel.c shlib_version
lib/libpthread/man: pthread_testcancel.3

Log message:
accept4() should be a cancellation point.
Update the list in the pthread_testcancel(3) manpage: several were missing.

noted by miod@

[>] http://marc.info/?l=openbsd-cvs&m=140951729111908&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-01 00:55:17


Module name: src
Changes by: jmc@cvs.openbsd.org 2014/08/31 14:34:28

Modified files:
lib/libc/uuid : uuid.3

Log message:
no Pp needed before non-compact lists;

[>] http://marc.info/?l=openbsd-cvs&m=140951832012111&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-01 01:55:07


Module name: src
Changes by: bluhm@cvs.openbsd.org 2014/08/31 14:51:31

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

Log message:
Do not call free() on an array in the data section. Fortunately
the code was not reached. No binary change.
OK miod@ guenther@

[>] http://marc.info/?l=openbsd-cvs&m=140951935412282&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-01 01:55:08


Module name: src
Changes by: tedu@cvs.openbsd.org 2014/08/31 15:08:48

Modified files:
sys/sys : buf.h
sys/kern : vfs_bio.c

Log message:
replace LRU bufcache with something originally modelled after 2Q.
this should provide a degree of scan resistance, and also serves as a
midway point for further development of multi queue algorithms.
i've tried to minimize the risk and degree of regressions.
probably ok beck

[>] http://marc.info/?l=openbsd-cvs&m=140952023712487&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-01 01:55:10


Module name: www
Changes by: nick@cvs.openbsd.org 2014/08/31 15:23:34

Modified files:
faq : upgrade55.html

Log message:
The problem with predicting the future is it is subject to change.
Inspired by Daniel Jakots, though I went in a slightly different direction.

[>] http://marc.info/?l=openbsd-cvs&m=140952313613240&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-01 02:55:07


Module name: src
Changes by: bluhm@cvs.openbsd.org 2014/08/31 16:11:43

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

Log message:
The reapchild() signal handler collects all children. This can be
done easier by ignoring SIGCHLD.
OK guenther@

[>] http://marc.info/?l=openbsd-cvs&m=141076804326540&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-16 14:22:47


Module name: src
Changes by: reyk@cvs.openbsd.org 2014/09/15 02:00:27

Modified files:
usr.sbin/httpd : server_http.c

Log message:
Make the HTTP version mandatory and abort if it is missing in the request.

[>] http://marc.info/?l=openbsd-cvs&m=141076842726620&w=2
obsd.info.14
openbsd-cvs(obsdave,2) — All
2014-09-16 14:22:48


Module name: src
Changes by: reyk@cvs.openbsd.org 2014/09/15 02:06:11

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

Log message:
Make the HTTP version mandatory and abort if it is missing in the request.

Pages: 1 ... 9 10 11 12 13 14 15 16 17 18 19 20 21 22