Age | Commit message (Collapse) | Author | |
---|---|---|---|
1999-02-17 | print ips_rcvmemdrop | Theo de Raadt | |
1999-02-17 | -f option for case folding; twofsonet@graffiti.com | Theo de Raadt | |
1999-02-12 | Note that vacation can now use the Return-Path | Marco S Hyman | |
header as well as UNIX From to find the sender | |||
1999-02-12 | parse "Return-Path:" headers in addition to UUCP style | Marco S Hyman | |
"From " lines; remove redundant program name from log messages | |||
1999-02-11 | fix usage messages | Theo de Raadt | |
1999-02-09 | correct a default; js3guj@gold.ocn.ne.jp | Theo de Raadt | |
1999-02-09 | for 1 min up, report min instead of mins; abs@netbsd | Theo de Raadt | |
1999-02-09 | if we read less than Content-Length, whine and error | Theo de Raadt | |
1999-02-08 | Don't call curses routines beep() or flash() if the screen has not been | Todd C. Miller | |
setup yet (as they will try to us SP which is NULL at this point). | |||
1999-02-07 | fix fold -s early break; helbig@Informatik.BA-Stuttgart.DE | Theo de Raadt | |
1999-02-07 | fgets -> fgetln, don't lie about lines being too long | Aaron Campbell | |
1999-02-06 | kill redundant (and incorrect) check for mallco failure | Todd C. Miller | |
1999-02-05 | Use rchildfdsn+1, not FD_SETSIZE for nfds in select() | Todd C. Miller | |
1999-02-04 | Fix a serious memory consumption problem when running over directories | Todd C. Miller | |
that contain many hard-linked files; johnh@isi.edu Also add an xstrdup() that behaves like xmalloc() on failure. | |||
1999-02-04 | remove strcpy, even if safe | Theo de Raadt | |
1999-02-04 | report on no udp checksum | Theo de Raadt | |
1999-02-04 | From 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-03 | Use ${COPTS}; wd@ics.nara-wu.ac.jp | Todd C. Miller | |
1999-02-03 | Fix 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-02 | Remove 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-26 | Add a -b(ackup) flag to move any existing file(s) aside by renaming | Todd 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-24 | updates from ncurses-4.2-990123 | Todd C. Miller | |
1999-01-23 | add HISTORY section | Todd C. Miller | |
1999-01-22 | remove references to toe(1) since we don't have it | Todd C. Miller | |
1999-01-22 | infocmp from ncurses-4.2-990116. Needs current libcurses to be useful | Todd C. Miller | |
1999-01-18 | updates from ncurses-4.2-990116 | Todd C. Miller | |
1999-01-14 | hmm, after all it seems Julian again, but still has nothing to do w/ the ↵ | Michael Shalayeff | |
united states (; | |||
1999-01-14 | this is Gregorian calendar, and it has nothing to do w/ united states | Michael Shalayeff | |
1999-01-11 | Move break statement so that -Q really works | Thorsten Lockert | |
1999-01-11 | fix seg fault on sparc | Marco S Hyman | |
1999-01-10 | Forgot to add midiplay here | Niklas Hallqvist | |
1999-01-09 | behave reasonably if malloc fails | Todd C. Miller | |
1999-01-09 | close 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-05 | do not concern ourselves with MAX_PID | Theo de Raadt | |
1999-01-04 | Correct ! handling in parens; dave@dtsp.co.nz | Todd C. Miller | |
1999-01-04 | MIN_PID should be 4 since update is proc 3 now | Todd C. Miller | |
1999-01-04 | spelling | Artur Grabowski | |
1999-01-03 | Use 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-03 | back 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-03 | we have basename(3) and dirname(3) in libc (albeit with slightly different ↵ | Todd C. Miller | |
semantics | |||
1999-01-01 | MIDI file player | Niklas Hallqvist | |
1998-12-28 | use \& block on : in macro; ross | Theo de Raadt | |
1998-12-28 | handle oversize fd_set | Theo de Raadt | |
1998-12-28 | crank PID_MAX to 99999 | Theo de Raadt | |
1998-12-28 | don't dump core when invoked with no args; pavel_roskin@geocities.com | Todd C. Miller | |
1998-12-24 | retreived -> retrieved | Aaron Campbell | |
1998-12-21 | kill union wait; christos | Theo de Raadt | |
1998-12-20 | add some parens for clarity | Todd C. Miller | |
1998-12-20 | If 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 |