Age | Commit message (Collapse) | Author | |
---|---|---|---|
1999-07-04 | more macro conversion | Aaron Campbell | |
1999-06-05 | remove trailing whitespace, some Nm cleanup | Aaron Campbell | |
1999-06-05 | more .Os cleansing | Aaron Campbell | |
1999-05-28 | more .El madness | Aaron Campbell | |
1999-05-23 | remove argument from .Os macros so value in /usr/share/tmac/mdoc/doc-common | Aaron Campbell | |
is used instead; kwesterback@home.com | |||
1999-05-16 | Cleanup xrefs under SEE ALSO. Specifically: | Alex Feldman | |
- Sort xrefs by section, and then alphabetically. - Add missing commas between xref items. - Remove commas from the last xref entry. - Remove duplicate entries. | |||
1998-08-03 | Set SO_REUSEADDR on printer/tcp service (port 515); csapuntz@clearviewtech.com | Todd C. Miller | |
1998-06-28 | Treat a printer as remote iff RM is not us or RP is set and it doesn't match the | Angelos D. Keromytis | |
current printer;dwmalone@maths.tcd.ie | |||
1998-06-23 | Fix snprintf return value usage. | Todd C. Miller | |
1998-04-22 | buf mishandling; rotel@indigo.ie | Theo de Raadt | |
1998-02-27 | be more paranoid. | Theo de Raadt | |
By the way, the lp* tools are in need of a full test sometime in the next two weeks. I want to hear from someone who is running all of them that they work 100% fine. I do not own a printer, so I'm going to rely on someone out there to take care of this.. | |||
1998-02-15 | Use keepalives as the protocol never notices if a networked printer | Niklas Hallqvist | |
dies. | |||
1997-10-05 | be more paranoid; based on problem report by mhpower@MIT.EDU | Theo de Raadt | |
1997-09-21 | $OpenBSD$ | Theo de Raadt | |
1997-09-09 | Use setlogin("") instead of setlogin(user) since target user is daemon. | Todd C. Miller | |
1997-09-09 | Use setlogin(2). | Todd C. Miller | |
1997-08-04 | save errno in sigchld handlers | Theo de Raadt | |
1997-07-27 | use sendmail -t | Theo de Raadt | |
1997-07-25 | #if __STDC__ --> #ifdef __STDC__ | Michael Shalayeff | |
1997-07-25 | restore traditional "all" keyword option - see lpc(8) | grr | |
1997-07-24 | inet_aton() returns 0 on error, not -1. | Todd C. Miller | |
1997-07-23 | 1 byte oflows; millert | Theo de Raadt | |
1997-07-23 | 1 byte oflow; Don.Lewis@tsc.tdk.com | Theo de Raadt | |
1997-07-21 | careful about unlink; oliver | Theo de Raadt | |
1997-07-20 | careful with usernames; oliver | Theo de Raadt | |
1997-07-20 | careful with link paths; oliver | Theo de Raadt | |
1997-07-19 | Wall cleanup; people running lpd should test! | Theo de Raadt | |
1997-07-18 | Be extra careful when unlinking data file to only remove a file is | Todd C. Miller | |
it is in the current dir and df*. From imp@openbsd.org. | |||
1997-07-17 | Wall | Theo de Raadt | |
1997-07-17 | proto ksearch/msearch | Theo de Raadt | |
1997-07-17 | unistd.h | Theo de Raadt | |
1997-07-17 | fix Xr | Theo de Raadt | |
1997-07-17 | Change a strcpy() -> strncpy() because I'm paranoid. | Todd C. Miller | |
1997-07-16 | crank dfname/tfname; freebsd | Theo de Raadt | |
1997-07-09 | Fix strncat(3) usage. | Todd C. Miller | |
1997-07-08 | BUFSIZ -> MAXPATHLEN and strcat -> strncat. | Todd C. Miller | |
1997-06-23 | It is not a reasonable default behavior to abort a printout because of its | kstailey | |
size now that there's PostScript[tm]. | |||
1997-06-21 | fix -a synopsis typo; joerg@freebsd | Theo de Raadt | |
1997-06-20 | add newline to message | kstailey | |
1997-06-20 | I wasted a lot of paper because of the way that printcap mx is handled. | kstailey | |
I don't even have an mx in my printcap, the default is too small, a 45 page PostScript file with some images should not barf because of the default mx. I will deal with this in a better way later. | |||
1997-06-02 | lpd has no support for specifying port option; sounds silly anyways; ↵ | Theo de Raadt | |
tinguely@plains.NoDak.edu | |||
1997-04-04 | when mktemp() is hard to fix, use 10 X | Theo de Raadt | |
1997-01-17 | Add OpenBSD tags (was in wrong dir for previous commit) | Todd C. Miller | |
1997-01-17 | Add OpenBSD tags | Todd C. Miller | |
1997-01-17 | Possible buf oflow. | Todd C. Miller | |
1997-01-17 | OpenBSD tags | Todd C. Miller | |
1997-01-17 | possible oflow | Todd C. Miller | |
1997-01-06 | add -r switch for onlcr translation | Michael Shalayeff | |
1996-12-20 | initialize name; is this the right hack? | Theo de Raadt | |
1996-12-16 | Implement more tty flags for better portability from other systems: | Thorsten Lockert | |
XCASE - canonical input/output processing IUCLC - translate uppercase to lowercase on input OLCUC - translate lowercase to uppercase on output OCRNL - translate carriage return to newline on output ONOCR - do not output carriage return at column 0 ONLRET - newline performs carriage return function In addition the tty compatibility interface supports LCASE properly. Look at termios(4) for a more complete description of the above flags. |