summaryrefslogtreecommitdiffstats
path: root/usr.bin/diff/diffdir.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2007-02-21remove part of buf abuse and store errcnt in softc (instead of b_errcnt); more work can be done to lower buf abuse even more; miod@ testing and okmickey2-8/+9
2007-02-21Clear alarm() before restarting sshd on SIGHUP. Without this, if there'sdtucker1-1/+2
a SIGALRM pending (for SSH1 key regeneration) when sshd is SIGHUP'ed, the newly exec'ed sshd will get the SIGALRM and not have a handler for it, and the default action will terminate the listening sshd. Analysis and patch from andrew at gaul.org.
2007-02-21simplify synopsis and usage(); from Igor Sobradojmc2-17/+8
2007-02-21from brad:jmc1-2/+2
Hardware VLAN stripping was removed by Camiel before 3.8. ok camiel
2007-02-21net.inet.esp.udpencap is enabled by default;jmc1-2/+2
from jared rr spiegel: documentation/5385
2007-02-21add Option GlobeTrotter 3G+ to the list of devices supported by ubsa(4)fkr1-1/+2
2007-02-21let the Globetrotter 3G+ attach to ubsa, from Victor Meghesan through bugs@fkr1-1/+3
2007-02-21regenfkr2-4/+9
2007-02-21usb device id for Globetrotter 3G+ from Victor Meghesan through bugs@fkr1-1/+2
2007-02-21Fix a few memory leaks.marco1-8/+19
ok jordan@
2007-02-21Simplify cvs_buf_differ(). Also cvs_buf_differ(), a comparisonray4-26/+12
function, should not do any resource freeing. OK joris@.
2007-02-21KNFmarco1-14/+18
2007-02-21Replace a manual xrealloc with rcsnum_setsize.ray1-6/+3
From Charles Longeau <chl at tuxfamily dot org>. OK joris@.
2007-02-21Some Sony VAIOs use the wrong eventing type. Work around that by honering it.marco1-1/+7
Found by giovanni <qgiovanni @ gmail . com> ok jordan
2007-02-21- Pass full buffer size to fgets.ray2-8/+7
- No need to initialize buffer. - Spacing. Based on diff from Charles Longeau <chl at tuxfamily dot org> long ago. OK moritz@.
2007-02-21Fixed deref for storing to local after CondRef opjordan1-6/+28
ok marco@
2007-02-21Don't unconditionally spin up SDEV_UMASS devices. They almostkrw1-8/+10
certainly don't need it, or are capable of reporting themselves in need of a spin up. Feedback from various agreeing it is unlikely such devices exist. Fixes devices found by Markus Bergkvist and Johan M:son Lindman. ok dlg@
2007-02-20It helps to enable hpet... This fixes bnx not working on amd64.marco1-1/+2
2007-02-20rename ccb_id to ccb_slot so its more clear what its used for. stash adlg1-3/+8
pointer to the port and the ata_xfer in there too.
2007-02-20oops, missed one in the cmd list entrydlg1-1/+2
2007-02-20KNF while here.marco1-3/+3
2007-02-20fill some macros for ahci structures. fix a spello while there.dlg1-2/+10
2007-02-20clarify that -f is not optional; ok ottojmc2-4/+7
2007-02-20KNF while in here.marco1-5/+4
2007-02-20Fix a memory leak in acx_load_radio_firmware() -- free the ucode after use.claudio1-3/+10
OK mglocker@
2007-02-20~1052 lines of new PHY radio initialization code and no end in sight.mglocker3-25/+1035
2007-02-20syncderaadt21-16/+37
2007-02-20Revert PAE pmap for now, until the strange bug is found. This stopstom27-1041/+696
the freezes many of us are seeing (especially on amd64 machines running OpenBSD/i386). Much testing by nick@ (as always - thanks!), hugh@, ian@, kettenis@ and Sam Smith (s (at) msmith (dot) net). Requested by, input from, and ok deraadt@ ok art@, kettenis@, miod@
2007-02-20Remove duplicate entry.tom1-2/+1
ok miod@
2007-02-20Fix the bpf hook in etherip_input() by using the right address family andclaudio1-6/+5
moving the m_adj() down to prevent so that the ethernet header is preserved. This fixes tcpdump on bridged gif(4) interfaces. OK mglocker@
2007-02-20for vfsconf sysctl, do not leak kernel sensors out to userlandderaadt1-4/+15
ok art thib
2007-02-20for sensors do not leak kernel pointers when copying out to userland;deraadt1-8/+24
spotted by art, ok dlg art
2007-02-20No use checking malloc return when called with M_WAITOK.thib1-39/+1
ok dlg@, tested by jolan@
2007-02-20Remove wrong length check, which is off-by-one, andmoritz1-4/+5
let snprintf(3) decide, if the whole string fittet into the buffer. ok ray@
2007-02-20Some cleanup including:moritz1-25/+35
- use sig_atomic_t signal handler flag - atoi() -> strtonum() conversion - remove vararg without matching fmt string - some more lint/gcc silencing ok millert@ ray@
2007-02-20Move AML_OBJDEBUG into ACPI_DEBUG.marco1-41/+50
KNF while in here too.
2007-02-20usage(): add -P and tweak -X; from Igor Sobradojmc1-3/+3
2007-02-20sort the -o options; from Igor Sobradojmc2-25/+25
2007-02-20sort options and sync usage(); from Igor Sobradojmc2-26/+26
2007-02-20simplify synopsis and usage(); from Igor Sobradojmc2-9/+6
2007-02-20sort options and avoid line wrap; from Igor Sobradojmc2-5/+6
2007-02-20sort options; from Igor Sobradojmc1-3/+3
2007-02-20sort options and sync synopsis; from Igor Sobradojmc1-6/+6
2007-02-20sort options; from Igor Sobradojmc2-5/+5
2007-02-20document syslog to other programs, ok jmchenning1-2/+12
2007-02-20Put ral* at pci? onto the install media. Noted by Sunnz (sunnzy (at)tom1-1/+2
gmail (dot) com) and Stuart Henderson (stu (at) spacehopper (dot) org) on misc@. ok deraadt@
2007-02-20implement logging to other program's stdin.henning2-17/+139
if the target is like "| /path/to/program", syslogd forks and execs program and sends the selected log messages to program's stdin. uses a socketpair, grows the receive buffer on the reader side and has the socket nonblocking on syslog'd side to prevent syslogd blocking. I'm using that here to feed logsurfer from ports for automated log analysis, werks beautifully. lots of input & help mpf, ok mpf djm "no objections" millert
2007-02-20set maximum packet and window sizes the same for multiplexed clientsdjm1-4/+10
as normal connections; ok markus@
2007-02-20put -n in the right place; from Igor Sobradojmc1-4/+4
2007-02-20typos; from Daniel Dickmanjmc1-6/+6