summaryrefslogtreecommitdiff
path: root/usr.bin
AgeCommit message (Collapse)Author
1999-02-17print ips_rcvmemdropTheo de Raadt
1999-02-17-f option for case folding; twofsonet@graffiti.comTheo de Raadt
1999-02-12Note that vacation can now use the Return-PathMarco S Hyman
header as well as UNIX From to find the sender
1999-02-12parse "Return-Path:" headers in addition to UUCP styleMarco S Hyman
"From " lines; remove redundant program name from log messages
1999-02-11fix usage messagesTheo de Raadt
1999-02-09correct a default; js3guj@gold.ocn.ne.jpTheo de Raadt
1999-02-09for 1 min up, report min instead of mins; abs@netbsdTheo de Raadt
1999-02-09if we read less than Content-Length, whine and errorTheo de Raadt
1999-02-08Don't call curses routines beep() or flash() if the screen has not beenTodd C. Miller
setup yet (as they will try to us SP which is NULL at this point).
1999-02-07fix fold -s early break; helbig@Informatik.BA-Stuttgart.DETheo de Raadt
1999-02-07fgets -> fgetln, don't lie about lines being too longAaron Campbell
1999-02-06kill redundant (and incorrect) check for mallco failureTodd C. Miller
1999-02-05Use rchildfdsn+1, not FD_SETSIZE for nfds in select()Todd C. Miller
1999-02-04Fix a serious memory consumption problem when running over directoriesTodd C. Miller
that contain many hard-linked files; johnh@isi.edu Also add an xstrdup() that behaves like xmalloc() on failure.
1999-02-04remove strcpy, even if safeTheo de Raadt
1999-02-04report on no udp checksumTheo de Raadt
1999-02-04From FreeBSD:Todd C. Miller
Add new option '-p pattern' for splitting files based on matching lines in the file with a regular expression. Useful for e.g. 'cvs diff' output. Also compile cleanly with -Wall and use defines from <sysexits.h>.
1999-02-03Use ${COPTS}; wd@ics.nara-wu.ac.jpTodd C. Miller
1999-02-03Fix broken conversion of private err() function and make ierr() and oerr()Todd C. Miller
back into functions, not macros. Also make functions that call mmap() return an int so we can fall back to non-mmap (slow) version on mmap failure. Noticable effects: o when you tail multiple files, if one of the files doesn't exist or is otherwise broken, keep on going to the next file. o it is now possible to tail files > 2gig, though it will be *very* slow since tail will be unable to use mmap()
1999-02-02Remove useless cast to quad_t. Gcc thinks "%qd" in printf is the same as ↵Todd C. Miller
"%lld" so we get a warning on alpha with -Wall. Live with it.
1999-02-02 o Some minor updates from lite2 (mostly in the man page)Todd C. Miller
o Add support for large files by using quads as counters
1999-01-26Add a -b(ackup) flag to move any existing file(s) aside by renamingTodd C. Miller
them to file.old instead of simply deleting them. A different backup suffix may be chosen with the -B option's argument. hubertf@netbsd.org
1999-01-24updates from ncurses-4.2-990123Todd C. Miller
1999-01-23add HISTORY sectionTodd C. Miller
1999-01-22remove references to toe(1) since we don't have itTodd C. Miller
1999-01-22infocmp from ncurses-4.2-990116. Needs current libcurses to be usefulTodd C. Miller
1999-01-18updates from ncurses-4.2-990116Todd C. Miller
1999-01-14hmm, after all it seems Julian again, but still has nothing to do w/ the ↵Michael Shalayeff
united states (;
1999-01-14this is Gregorian calendar, and it has nothing to do w/ united statesMichael Shalayeff
1999-01-11Move break statement so that -Q really worksThorsten Lockert
1999-01-11fix seg fault on sparcMarco S Hyman
1999-01-10Forgot to add midiplay hereNiklas Hallqvist
1999-01-09behave reasonably if malloc failsTodd C. Miller
1999-01-09close PR 685.Marc Espie
Slightly trimmed down version of fix by assar@sics.se (strtol failure is usually simpler to test, and error messages should identify the program that produces them)
1999-01-05do not concern ourselves with MAX_PIDTheo de Raadt
1999-01-04Correct ! handling in parens; dave@dtsp.co.nzTodd C. Miller
1999-01-04MIN_PID should be 4 since update is proc 3 nowTodd C. Miller
1999-01-04spellingArtur Grabowski
1999-01-03Use libc basename(3) and dirname(3) instead of defining our own. Also clean ↵Todd C. Miller
up some nasty assumptions that basename() returns a pointer that lies within its argument
1999-01-03back out last change, other parts of patch rely on basename() returning a ↵Todd C. Miller
ptr to a part of name, not a new string
1999-01-03we have basename(3) and dirname(3) in libc (albeit with slightly different ↵Todd C. Miller
semantics
1999-01-01MIDI file playerNiklas Hallqvist
1998-12-28use \& block on : in macro; rossTheo de Raadt
1998-12-28handle oversize fd_setTheo de Raadt
1998-12-28crank PID_MAX to 99999Theo de Raadt
1998-12-28don't dump core when invoked with no args; pavel_roskin@geocities.comTodd C. Miller
1998-12-24retreived -> retrievedAaron Campbell
1998-12-21kill union wait; christosTheo de Raadt
1998-12-20add some parens for clarityTodd C. Miller
1998-12-20If open of device fails, try up to 10 times. Useful for CD changers that ↵Todd C. Miller
take a while to switch between logical units