Age | Commit message (Collapse) | Author | |
---|---|---|---|
2015-07-07 | Always use "ifp" instead of mixing it with "ac->ac_if" in in_arpinput(). | Martin Pieuchot | |
2015-07-07 | /var/unbound/db/root.key can be stored in plain text actually; that's just | Antoine Jacoutot | |
the public key. prodded by semarie@ ok sthen@ | |||
2015-07-07 | Skip mountpoint checking in case we only want the version or help | Antoine Jacoutot | |
(-V, -h). ok syl@ mikeb@ | |||
2015-07-07 | Only store checksums for: | Antoine Jacoutot | |
/var/nsd/etc/nsd.conf (may contain a key) /var/unbound/db/root.key (fix path as well) from Tim van der Molen ok millert@ sthen@ | |||
2015-07-07 | Unbreak option parsing: | Antoine Jacoutot | |
fuse_opt_pase is called with an opaque void * and struct fuse_opt. If val has a positive value and off != -1, we modify the opaque void * at the offset off to put it val. This matches what the GNU libfuse does. fixes (at least) simple-mtpfs option parsing diff from slacker syl@, thanks! "it can't get worse than not working" mikeb@ ok miod@ sthen@ | |||
2015-07-07 | Do not return internal nodes to the upper layer in rn_lookup(). | Martin Pieuchot | |
The limit between the radix layer and the route layer is somewhat vague, if it exists at all. This changes prevent rtrequest1(9) to find and delete the root node (RNF_ROOT) when trying to delete a non-existing default route: # route delete 0.0.0.0 delete host 0.0.0.0 # route delete 0.0.0.0 route: writing to routing socket: No such process delete host 0.0.0.0: not in table Historically rn_delete() was a no-op when called with an internal node as argument. But there's no reason to manipulate such node. In a better world rn_match() would contain such check, but let's change the perfect-match function for the moment as this fixes a bug and many dragons are lurking in there. Fix a regression introduced by the big refactoring of r1.40 and reported by tobias@. ok tobias@, claudio@, pelikan@ | |||
2015-07-07 | At some point the u-boot mlo for panda/beagle stopped looking for | Jonathan Gray | |
u-boot.bin and required u-boot.img on the fat fs so switch to using that as we do for beaglebone. Reported by abieber@ via bmercer@ | |||
2015-07-06 | Remove some unneeded includes. OK deraadt@ | Todd C. Miller | |
2015-07-06 | Trim trailing whitespace from the comsat message before calling | Todd C. Miller | |
strtonum() to parse the offset since mail.local writes a trailing newline. Otherwise comsat just discards the message. OK deraadt@ | |||
2015-07-06 | Add support for IPv6 by using getaddrinfo(). Our inetd.conf ships | Todd C. Miller | |
with an IPv6 comsat example but it would never get used. OK deraadt@ | |||
2015-07-06 | Update environment with -E when attach-session used on an already | Nicholas Marriott | |
attached session or switch-client used on the current session. From Cam Hutchison. | |||
2015-07-06 | disksort is dead, and now so is any code that relied on its compat | David Gwynne | |
in bufqs. it's only taken us 6 years. ok millert@ krw@ | |||
2015-07-06 | We're now creating a connected route for every configured address so | Martin Pieuchot | |
there's no need to flag every address as IFA_ROUTE. | |||
2015-07-06 | No longer need to manually pass RTF_MPATH to rt_ifa_add(9). | Martin Pieuchot | |
2015-07-06 | Make malo(4) compile with MALO_DEBUG. Problem found by Walter Daugherity. | Stefan Sperling | |
2015-07-05 | Let syslogd run with non-blocking sockets. Replace the existing | Alexander Bluhm | |
fcntl(O_NONBLOCK) with the simpler SOCK_NONBLOCK and add this flag to the UDP sockets. React to EWOULDBLOCK although it should not happen. OK benno@ | |||
2015-07-05 | fix a format specifier used in SR_DEBUG printfs. | Mike Larkin | |
from Karel Gardas (gardask at gmail.com) | |||
2015-07-05 | Include missing 'const' references in man page and fix some parameter names | Mike Larkin | |
that didn't match the code. | |||
2015-07-05 | Document the new 'fflag' argument to VOP_POLL(). | Todd C. Miller | |
From Martin Natano | |||
2015-07-05 | In case-statements where single and multiline commands are used, | Robert Peichaer | |
put the terminating ;; always on its own line. discussed with and OK krw@ halex@ | |||
2015-07-05 | regen | Joerg Jung | |
2015-07-05 | add id for TEMPerHUM sensor | Joerg Jung | |
ok mpi@ | |||
2015-07-04 | Fix misleading indent | Miod Vallat | |
2015-07-04 | document PKGPATHS, used together with PKGNAMES. | Marc Espie | |
fix PKGNAMES description (only relates to actual BUILD_PACKAGES) | |||
2015-07-04 | Use "alternation" consistently | feinerer | |
ok jmc@ | |||
2015-07-04 | get rid of some if 0 code that refers to b_actf. | David Gwynne | |
ok miod@ | |||
2015-07-04 | replace the manual buf list management with a fifo bufq. it simplifies | David Gwynne | |
the code in some cases and makes it generally more readable. this has been tested in simh, real hardware may or may not work anyway. ok miod@ | |||
2015-07-04 | count outgoing packets like every other driver. | David Gwynne | |
ok miod@ | |||
2015-07-04 | various improvements from remi locherer; | Jason McIntyre | |
i've tweaked it a bit, based on feedback from claudio and phessler ok phessler | |||
2015-07-03 | sync | Theo de Raadt | |
2015-07-03 | Remove sudoers | Todd C. Miller | |
2015-07-03 | Remove sudo, it is now in ports. | Todd C. Miller | |
2015-07-03 | Sudo has moved to ports. | Todd C. Miller | |
2015-07-03 | Repair algorithm name array after 1.6. | Miod Vallat | |
2015-07-03 | Use [aA]* instead of a*|A* in case-blocks. | Robert Peichaer | |
OK krw@ @halex agreed on this in a similar diff | |||
2015-07-03 | Terminate 'config' keyword array with a NULL element. | Mike Belopuhov | |
Reported by trondd at kagu-tsuchi ! com, thanks! | |||
2015-07-03 | Put the newline at the right place. | Miod Vallat | |
2015-07-03 | Rename mtx_cpu to mtx_owner for consistency with the other platforms. | Miod Vallat | |
2015-07-03 | bzero cmsgbuf before using it, silences valgrind warnings. | Bryan Steele | |
henning@ "sure" | |||
2015-07-03 | Fix cast in atomic_swap_ptr() | Miod Vallat | |
2015-07-03 | Switch to standard, non-historical sort(1) and join(1) usage. ok millert@ | Jeremie Courreges-Anglas | |
2015-07-03 | Correctly restore ipl in fpusave_proc() when we have to busy loop. | Miod Vallat | |
2015-07-03 | Enable static pie on sparc; be sure to upgrade your compiler before your | Miod Vallat | |
next build (or wait for the snapshot to reach the mirrors) | |||
2015-07-03 | static pie support for sparc. | Miod Vallat | |
2015-07-03 | Link static pie binaries against rcrt0.o | Miod Vallat | |
2015-07-03 | Correctly handle relative-type relocations; very old ld.so bug which got | Miod Vallat | |
fixed everywhere but on sparc for some unknown reason (and did not cause any havoc in real life). | |||
2015-07-03 | There are no ${LIBCSRCDIR}/arch/${MACHINE_CPU}/locale directories in | semarie | |
cvs. Remove the unused search path from Makefile.inc "fine with me" stsp@ | |||
2015-07-03 | vax-11/780 announced 1977, not 1978; | Jason McIntyre | |
from john marshall, freebsd pr #200961 ok miod | |||
2015-07-03 | legacy v00 certificates are gone; adapt and don't try to test them; | Damien Miller | |
"sure" markus@ dtucker@ | |||
2015-07-03 | another SSH_RSA_MINIMUM_MODULUS_SIZE that needed cranking | Damien Miller | |