summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-10-18Remove setprogname().Martin Natano
2016-10-18Only allow epoch timestamps for -T. A shared option for either using theMartin Natano
timestamps from a file or using an epoch timestamp is ridiculous.
2016-10-18Don't tell the programmer not to put variable declarations insideTodd C. Miller
blocks. OK guenther@ kettenis@
2016-10-18Remove the -B flag. Most of the byteswapping code was tedu'd already.Martin Natano
2016-10-18Remove channel_input_port_forward_request(); the only caller was theDarren Tucker
recently-removed SSH1 server code so it's now dead code. ok markus@
2016-10-18Merge ufs/{ufs,ffs}/ into ffs/.Martin Natano
2016-10-18Add the branch revision to the status output much like GNU cvs does.Joris Vink
OK millert@
2016-10-18Merge fs/msdosfs/ and newfs_msdos/ into msdos/.Martin Natano
2016-10-18Merge fs/cd9660/ into cd9660.Martin Natano
2016-10-18SVM on AMD CPUs is not supported yet, so don't attach there; ok mlarkin@Christian Weisgerber
2016-10-18Make grid_clear_cell set up the entry properly for 256 and RGB cells.Nicholas Marriott
2016-10-18adjust after the ordering was made well-defined in mandocdb.c rev. 1.180Ingo Schwarze
2016-10-18Fix a comment: We don't have manpath(1). No code change.Ingo Schwarze
2016-10-18Simplify and correct support for reproducible builds, such that databaseIngo Schwarze
entries come in a well-defined order even in the presence of MLINKS. Do this by using the compar() argument of fts_open(3) rather than trying to sort later, which missed some cases. This also shortens the code by a few lines. Diff from Ed Maste <emaste @ FreeBSD>, adapted to our tree and tweaked a bit by me, final version confirmed by Ed.
2016-10-18when openbsd.randomdata was made readonly, the proto seed copy got doneTheo de Raadt
too late, leading to poor rng in the kernel early on. a behavioural artifact in vmm spotted the issue. ok tedu guenther mlarkin
2016-10-18split pf_send_tcp() into the part that builds the mbuf and the actualHenning Brauer
sending, needed soon. ok sashan mikeb lteo
2016-10-18Tweak a couple of log statements.Nicholas Marriott
2016-10-18Avoid generate SIGTTOU when restoring the terminal mode. If we getTodd C. Miller
SIGTTOU it means the process is not in the foreground process group which, in most cases, means that the shell has taken control of the tty. Requiring the user the fg the process in this case doesn't make sense and can result in both SIGTSTP and SIGTTOU being sent which can lead to the process being suspended again immediately after being brought into the foreground.
2016-10-18Install a signal handler for tty-generated signals and wait for theTodd C. Miller
ssh child to suspend before suspending sftp. This lets ssh restore the terminal mode as needed when it is suspended at the password prompt. OK dtucker@
2016-10-18Use "continue;" instead of a bare ";" in the for() loop exampleTodd C. Miller
with no body.
2016-10-18The variable dlen is always positive and d may be negative. SoAlexander Bluhm
declare both with the correct sign in pf_change_icmp_af(). OK henning@
2016-10-18The checksum of a ICMP "need to frag" packet for TCP was wrong whenAlexander Bluhm
created from a ICMP6 "too big" packet. The function pf_change_icmp_af() has code to adjust the pseudo-header checksum in the ICMP6 case, but pf_test_state_icmp() changed the proto before the case was entered. So call pf_change_icmp_af() before the pd->proto is converted in the TCP and UDP payload case like it was already done for ICMP and ICMP6 payload. Found by sys/net/pf_forward regress test; OK henning@
2016-10-18Place splsoftnet() in route_input() to shut up splassert warningsAlexander Bluhm
in sorwakeup(). Report from egorenar-dev at posteo.net; OK henning@
2016-10-18Rewrite the kern.malloc.kmemstat in the same style as previous. This one doesOtto Moerbeek
not overflow because the initial count includes empty slots; ok tb@
2016-10-18spelling:Theo Buehler
initialising -> initializing from Claus Assmann artitions -> partitions from spell(1)
2016-10-18Give each item on queue a name for better logging.Nicholas Marriott
2016-10-18Zero dirty count after flushing.Nicholas Marriott
2016-10-18Store the right size in the pipe offset for pipe-pane.Nicholas Marriott
2016-10-18typo fix and zap some trailing eol whitespace;Jason McIntyre
from claus assman
2016-10-18When the guest OS gets a zero MAC address on a network interface, it shouldReyk Floeter
create a randomized locally administrated address. OpenBSD as a guest OS does this correctly but we cannot rely on it for other guests, so randomize the MAC address in vmd(8) on the host side if it is not specified by the user. I incremented the prefix by one to differentiate from the ones that are generated by OpenBSD in the kernel; fe:e1:bb:xx:xx:xx. OK deraadt@ mlarkin@
2016-10-18Swap 'make cleandir' and 'make includes' for real.Theo Buehler
Should have been part of commitid uHRFWpwUBjIz0UuR. Original message: Move libcrypto, librpcsvc and gnu/usr.bin/cc/include from RDIRS to PRDIRS, and add prereq targets, so some header files are generated by BUILDUSER during 'make prereq' instead of by root during 'make includes'. Switch the order of 'make cleandir' and 'make includes' during 'make build' so we don't generate many files twice. Except for some machine@ symlinks from ${MACHINE}/stand, /usr/obj is now clean from files generated by root during 'make build'. Those will be cleaned up in a second step. help, testing & ok deraadt, input from natano, further testing rpe
2016-10-18Delete remnants of "traptrace" supportPhilip Guenther
ok deraadt@
2016-10-17test .Bl -tag without -width;Ingo Schwarze
related to mandoc/mdoc_term.c rev. 1.231 and to textproc/groff-1.22.3p3
2016-10-17simplify implementation of the '$' command, no functional change;Ingo Schwarze
OK nicm@ tb@ czarkoff@
2016-10-17resolve code duplication in domove() for the commands: b B w WIngo Schwarze
no functional change; suggested by tb@
2016-10-17No need to inspect LC_CTYPE:Ingo Schwarze
* It was only used in vi input mode. * No functional change in case of set -o vi-show8. * No functional change if LC_CTYPE is set to UTF-8. * More robust for the default of LC_CTYPE=C on a UTF-8 xterm. Behaviour changes for the combination LC_CTYPE=C with set +o vi-show8 on non-UTF-8 terminals, but that combination is useless and dangerous with or without this patch. If you want to edit individual raw non-ASCII non-UTF-8 bytes on the shell command line, always use set -o vi-show8. (Besides, i doubt that you actually want to do that; better use a real hex editor in the first place.) OK czarkoff@.
2016-10-17Make sure the cursor goes to the first byte of a UTF-8 characterIngo Schwarze
and not to a continuation byte for these commands: b B e E w W | Let {e,E}ndword return the position after the word because that is easier to handle in the caller. OK tb@ czarkoff@
2016-10-17Add the option to specify an interface group per virtual switch as well;Reyk Floeter
this group will be added to all VM tap(4) interfaces in the switch. Tested by martijn@
2016-10-17unused variablesMartin Natano
2016-10-17Remove apple ufs bits.Martin Natano
2016-10-17Tweak /etc/ldap/certs/ FILES entry.Jeremie Courreges-Anglas
2016-10-17makefs doesn't care about quotas.Martin Natano
2016-10-17In FILES mention /etc/ldapd.conf first, then /etc/ldap/ entriesJeremie Courreges-Anglas
2016-10-17Dedup ffs_extern.h.Martin Natano
2016-10-17Fix a few mistakes and add a FILES entry for /etc/ldap/certsJeremie Courreges-Anglas
From Rob Pierce, help & ok jmc@
2016-10-17Remove the artificial maximum number of unix domain sockets inAlexander Bluhm
syslogd(8). Just malloc(3) them dynamically which also gives a more random address space layout. OK deraadt@
2016-10-17Use strtoull() to read the datapath id and expect "datapath" instead ofRafael Zalamena
"datapathid" as stated by the man page. ok reyk@
2016-10-17Remove some more unused cd9660 options.Martin Natano
2016-10-17Remove cd9660's archimedes option, we won't need RISC OS metadata on ourMartin Natano
ISO images.
2016-10-17Remove "feature" defines. This code won't try to be portable when we areMartin Natano
done hacking it.