summaryrefslogtreecommitdiffstats
path: root/usr.bin/diff/diff.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2003-10-27Add -x flag to extract the ramdisk filesystem from bsd.rd; OK deraadt@millert2-30/+89
2003-10-27Skip ATA modes detection for SATA drives, it's useless and somegrange1-3/+19
SATA drives really don't like it. Add a delay between drive reset and issuing IDENTIFY command, some drives need it (from NetBSD). This fixes problems with SATA drives reported by Jonathon Fletcher <jonathon.fletcher@pobox.com>. He also provided access to the test machine.
2003-10-27Skew the advertisement interval correctly when we reschedule.mcbride1-3/+6
2003-10-27typo from T.M. Sommers, via FreeBSD;jmc1-2/+2
ok drahn@
2003-10-27syncderaadt13-0/+14
2003-10-27typos; fom bruno@rohee.commickey1-3/+3
2003-10-27make sure that label block ends up in the right b_blkno for writedisklabel() trashes bootblockmickey1-15/+16
2003-10-27- make SYNOPSIS expand properlyjmc1-5/+62
- document -t - clarify behaviour - document differences from POSIX
2003-10-27fix crash on startup by using the good allocation routine in edinit()vincent3-13/+9
spotted and ok by henning
2003-10-27Be sure to always have a valid faulting address when we send a signalmiod1-8/+11
to a process.
2003-10-27Be sure to flush the entire va space in cpu_switch().miod1-3/+2
This used to work because the cmmu code is suboptimal at the moment.
2003-10-27Remove dead code and polish commentsmiod1-18/+10
2003-10-27Also check if we're going down before scheduling an advertisementmcbride1-2/+3
when we fail to get an mbuf. This too is courtesy of Max Laier.
2003-10-27Actually stop sending advertisements if we're Master and the carp(4)mcbride1-2/+2
interface is brought down. Bug reported by Max Laier.
2003-10-27atlas does indeed support tagging and only the siop was brokenmickey1-3/+1
2003-10-27disable tagging on hppa and thus effectively restrict to one command at a time processing; krw@ okmickey1-1/+3
2003-10-26Work around a problem with shared libraries named as libX-A.B.so.X.Y.drahn1-3/+9
Without this patch, the standard major:minor version matching failed. ok brad@
2003-10-26per deraadt@ request, don't permit insanely large stackgap values.tedu1-2/+2
2003-10-26fix partition selection to allow all partitions to be grown.tedu2-5/+10
report by Mitja Muzenic <mitja at muzenic.net>
2003-10-26remove obsolete sections about limit of line length;jmc2-16/+2
thanks Eric Jackson for helping me fix this.
2003-10-26correct bad dprintf, from Moritz Jodeit <moritz at jodeit.org>avsm1-2/+2
2003-10-26Use __packed attribute to cleanup the '#define XXX' stuff in here.avsm2-33/+29
Also stops the struct having a double ;; in variable declarations, which breaks a few non-gcc parsers. millert@ ok
2003-10-26add a __packed #define to map to __attribute__((__packed__)) on gcc>=2.7avsm1-1/+7
2003-10-26rename 'supported' static var in userauth_gssapi() to 'gss_supported'avsm1-13/+13
to avoid shadowing the global version. markus@ ok
2003-10-26Uhm, disable debugging my default, even if it probably is good todrahn1-2/+1
run with it enabled for now.
2003-10-26Add line for wi@usb, currently commented out, for development and testing only.drahn2-2/+4
2003-10-26Driver for PRISM 2.5/3 based (wifi) USB adapters. This is a work in progress,drahn9-50/+2249
it does not yet handle bulk data copies or hostap mode. Only one model currently supported, however driver may support other PRISM based adapters. ok millert@ fgsch@
2003-10-26syncdrahn2-4/+11
2003-10-26Add netgear MA111 USB wifi.drahn1-1/+2
2003-10-26More ansi/knf missed the first time around.drahn1-15/+10
2003-10-26update for crl and crl2pkcs7;jmc1-64/+66
2003-10-26Oops, I'm on drugs. Revert and blame gremlins for the state of my tree.miod1-3/+3
2003-10-26typos from Jared Yanovich;jmc7-16/+16
2003-10-26Unbrek after recent wdc changes.miod1-3/+3
2003-10-26Real atomic locks for m88k.miod1-3/+41
2003-10-26Print error registers values in debug message after reset too.grange1-5/+7
2003-10-26Device reset improvements:grange1-9/+15
- put the reset protocol itself in the separate function __wdcdo_reset() so we don't need anymore to keep in sync two reset code paths; - change the reset protocol to something like FreeBSD and NetBSD do, this fixes slave ATA drive detect with weird ATAPI master (reported by fgsch@); Discussed with costa@. Tested by me, fgsch@, millert@, canacar@.
2003-10-26cosmetic change, people read preadd as p_read_d, so make it explicit:espie1-6/+6
preadd -> pre_add reallyadd -> really_add
2003-10-26Partial synch with reality, ok sturm.espie2-155/+14
2003-10-26"advbase" is the correct operand.mcbride1-2/+2
diff from Daniel Cavanagh <nofsk@vtown.com.au>
2003-10-25OpenSSL generates DNs with emailAddress, not Email.mcbride1-2/+2
2003-10-25Build state search indexes directly on pf_state instead of pf_tree_node.mcbride3-257/+350
This saves more than 30% memory on state entries, and simplifies the state insertion and removal code as well. NOTE: This changes the pf API; userland tools must be updated to match. ok henning@ dhartmei@
2003-10-25#undef p2 in carp_stats()mcbride1-2/+3
Pointed out by Max Laier
2003-10-25"goto bad" on error with carp_input, instead of simply returning.mcbride2-4/+4
Fixes leakage of mbufs on error. Pointed out by Max Laier.
2003-10-25don't destroy old pointer if realloc fails; from Daniel Lucq; ok deraadt@markus2-6/+14
2003-10-25Support the TI1410 Cardbus bridge found in some apple laptops. ok brad@drahn1-1/+11
2003-10-25additional hash for local port; improves speed of implicit bindmarkus2-8/+20
from >1000K cpu cycles to 20-30K for 18000 sockets on i386; test+feedback by Claudio Jeker; ok itojun@; [make sure you rebuild netstat/systat, too]
2003-10-25precompute most of hmac; fix size for md; ok mcbridemarkus1-29/+40
2003-10-25correct description of ip.porthifirst - oops!jmc1-2/+2
from Daniel Cavanagh;
2003-10-25fix possessive; from Jared Yanovich;jmc1-2/+2