summaryrefslogtreecommitdiffstats
path: root/usr.bin/diff/diff.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2003-07-31syncderaadt1-0/+4
2003-07-31skc.4 == sk.4deraadt1-1/+2
2003-07-30shine a bit morederaadt1-6/+3
2003-07-30hppa no longer needs -O0 to build toke.c; from miod@ and OK mickey@millert2-35/+5
2003-07-30gnu diff goes bye byederaadt33-19062/+0
2003-07-30an absolute cure for an inherited arrhythmia w/ uninitialized variablemickey1-1/+2
2003-07-30Remove my email address from my entry in the AUTHORS sectionmillert3-6/+6
2003-07-30kill sample device mappings as not really usefulmickey1-40/+1
2003-07-30indents; jfb okderaadt1-90/+95
2003-07-30Change:jason12-13/+25
#define I387 (*(union i387_union *)&(((struct pcb *)curproc->p_addr)->pcb_savefpu.gplemu)) To: #define I387 (curproc->p_addr->u_pcb.pcb_savefpu.gplemu) (and add a few includes of sys/user.h to make it work).
2003-07-30deduce the leds address from the model number and thus make some more use of that lichtenblinkenschmutz on some more machinensmickey3-8/+54
2003-07-30give those leds some hastemickey1-4/+5
2003-07-30NULL -> (char *)NULL in execle; ok millert@avsm1-4/+4
2003-07-30de-ifdef... now this is starting to make sense (it's still ugly and broken, tho)jason4-90/+6
2003-07-30Use (char *)NULL instead of (char *)0 in execl and execle; Andrey Matveevmillert2-8/+8
2003-07-30Experimental support for ICH5/ICH5R SATA, inspired from FreeBSDgrange1-4/+32
ata driver.
2003-07-30basic support for ftp:// in PKG_PATH. ok pvalchev@tedu1-4/+8
2003-07-30reverse booleans so it's clear what we're looking for. ok krw@tedu1-9/+10
2003-07-30clarify use of eject on an empty cdrom drive. (eject /dev/rcd0c)tedu1-10/+14
ok jmc@
2003-07-30Add POSIX -i option; tedu@ OKmillert2-10/+24
2003-07-30Make prompting POSIX-compliant. POSIX states "The patch utilitymillert1-34/+18
shall write a prompt to standard output and request a filename interactively from the controlling terminal (for example, /dev/tty)." OK deraadt@ and otto@
2003-07-30missing #includehenning1-1/+2
Claudio Jeker, PR3382
2003-07-30whitespacemarkus1-4/+3
2003-07-30use only 4 digits in format_sizemarkus1-6/+4
2003-07-30support for vt8231 from netbsd via pr3362 and tested by matthew.gream@pobox.commickey5-4/+422
2003-07-30syncderaadt1-0/+11
2003-07-30change SIOCDIFADDR/SIOCAIFADDR warnings into errors (now this has correctpvalchev1-4/+4
return code in certain cases); ok henning itojun
2003-07-29avoid stack smash on FDDI case. found by kernel propolice.itojun1-5/+7
markus ok. miod/paul confirmed
2003-07-29more prettytedu1-59/+45
2003-07-29Set pf_state->rt_ifp when creating the state entry, instead of doing itdhartmei1-13/+33
later on, when another packet matches the state. ok mcbride@
2003-07-29load_raw did not set all the needed fields in the dmamap.mickey1-18/+21
make sure to allocate dmamem in one segment. do not allocate extra va for dmamem allocated -- just reuse the already there equ mapping of pa and thus implement the dmamem_free as a pglist free.
2003-07-29Big Synccedric122-1211/+1211
2003-07-29If euid == 0 make datasize unlimited instead of cranking to the maxmillert1-3/+6
value returned by getrlimit(). Avoid resource limit issues when fscking very large filesystems.
2003-07-29o add pathnames.hmillert4-32/+47
o ignore empty TMPDIR environment variable o strip any trailing slashes from TMPDIR otto@ OK
2003-07-29Remove space at end of line.cedric1-81/+78
Ok dhartmei@ henning@
2003-07-29constify the conversion tablesmickey1-8/+8
2003-07-29indentderaadt1-2/+2
2003-07-29cleanderaadt2-7/+7
2003-07-29spacesderaadt49-213/+208
2003-07-29install ed advanced tutorial papers;jmc5-66/+9
some minor changes; ok mickey@
2003-07-29Instead of checking for "stdout" in decompress(), just do the checkmillert1-3/+6
in list_stats(). Looks cleaner and we don't have to rely on any special flags being set.
2003-07-29fix length for "- stalled -"markus1-2/+2
2003-07-29bad license; deraadtmarkus1-1780/+0
2003-07-29move spl checking wrap over the syscall into trap.c:syscall();mickey2-82/+13
this gives several benefits: the arguments for a syscall printed are the exact args and not some wild guess fetched from the user stack; the check does not include the AST traps that may be checked on their own in the trap() routine should be desired; kill last use and thus itself the fuword() function and it's glue.
2003-07-29replace 4 clause BSD licensed progressmeter code with a replacementmarkus2-244/+183
from Nils Nordman and myself; ok deraadt@
2003-07-29Add HPT302 and HPT371grange2-5/+5
2003-07-29Support for HPT302 and HPT371, inspired from the FreeBSD ata driver.grange2-20/+72
Thanks to otto@ for help in regress testing and tedu@ for unslacking me.
2003-07-29"pass on lo0" in the intermediate pf ruleset loaded during boot.henning1-1/+2
solves PR3376 by matthew.gream@pobox.com, fix slightly different ok mcbride@ deraadt@
2003-07-29sputnik dupe; from Dmitry Bogdan <dsb@uvm.poi.dvo.ru>mickey1-2/+1
2003-07-29document: ip.portfirst ip.portlast ip.porthifirst ip.porthilast;jmc1-1/+28
reported by Alejandro G. Belluscio on bugs@ Also document: ip.maxqueue thanks to henning, pb, otto and markus for their help. ok henning@