Age | Commit message (Collapse) | Author | |
---|---|---|---|
1997-12-24 | Correct copyright. | brian | |
Requested by: Eivind Eklund <perhaps@yes.no> | |||
1997-12-24 | Reverse mainbus probe order. Now we get to fix whatever breaks... | Jason Downs | |
1997-12-24 | Cosmetic (style): | brian | |
sizeof(var) -> sizeof var sizeof type -> sizeof(type) Suggested by: J Wunsch <j@uriah.heep.sax.de> | |||
1997-12-24 | Use sizeof cftypes128 for NCFTYPES128 macro, not sizeof cftypes ! | brian | |
Lucky that sizeof cftypes < sizeof cftypes128 | |||
1997-12-24 | Always give .Fn an argument, it will not default to the previous value. | Thorsten Lockert | |
1997-12-24 | Add support for 686 class; threadway is an M2 now. | Jason Downs | |
1997-12-24 | also need sys/stat.h; hubertf | Theo de Raadt | |
1997-12-23 | swap exit and quit | Theo de Raadt | |
1997-12-23 | make it more obvious why pmap_set syslogs happen | Theo de Raadt | |
1997-12-23 | strncpy(x,y,sizeof(x)) --> strncpy(x,y,sizeof(x)-1) | brian | |
Suggested by: Philippe Charnier <charnier@lirmm.fr> Theo de Raadt <deraadt@cvs.openbsd.org> | |||
1997-12-23 | use raster console by default since the sun prom is buggy. | chuck | |
1997-12-23 | sync | Theo de Raadt | |
1997-12-23 | correct exit code handling; cje@kestrel.scs.uiuc.edu | Theo de Raadt | |
1997-12-22 | sync | Theo de Raadt | |
1997-12-22 | fuix bocalan # | Theo de Raadt | |
1997-12-22 | sync | Theo de Raadt | |
1997-12-22 | Wrong length in strncpy and copyright cleanup. | Artur Grabowski | |
1997-12-22 | copyright cleanup. | Artur Grabowski | |
1997-12-22 | add XPG4.2 lockf; kleink | Theo de Raadt | |
1997-12-22 | sync | Theo de Raadt | |
1997-12-22 | handle timing normally except when clock jumps between 1 and 3 hours. If it | Theo de Raadt | |
jumps, attempt as best as possible to gaurantee that jobs DO run, but only run ONCE; patch by thompson@.tgsoft.com | |||
1997-12-22 | fix debug drive printing | Michael Shalayeff | |
1997-12-22 | Don't forget to ntohs(sin.sin_port) (DUH!) | brian | |
1997-12-22 | sync | Theo de Raadt | |
1997-12-22 | sync | Theo de Raadt | |
1997-12-22 | bocalan is different | Theo de Raadt | |
1997-12-21 | Don't set the tty variable to NULL when we lack a tty, leave it as | Todd C. Miller | |
"unknown". | |||
1997-12-21 | ifdef some definitions of NBPG that use kernel variables, when the | Angelos D. Keromytis | |
file is included from userland programs (such as lsof) | |||
1997-12-21 | ISA PnP support | Jason Downs | |
1997-12-21 | ISA PnP supporting code from NetBSD, and a pccom driver that supports ISA PnP. | Jason Downs | |
1997-12-21 | Obliterate old PnP `code' and outright replace with christos' code. | Jason Downs | |
1997-12-21 | Updated for new PnP code. | Jason Downs | |
1997-12-21 | Add (BSD) copyright headers | brian | |
1997-12-21 | sigh; move syslog up nearer the top. Any failures from this? | Theo de Raadt | |
1997-12-21 | Cosmetic: Test for comment lines after the lenght has been established. | brian | |
Pointed out by: Theo de Raadt <deraadt@cvs.openbsd.org> | |||
1997-12-21 | Allow multiple (comma seperated) devices on the "set device" line. | brian | |
Submitted by: Derek Inksetter <derek@saidev.com> | |||
1997-12-21 | Mention that leading whitespace is ignored when identifying comments. | brian | |
1997-12-21 | Zero struct sockaddr_??s before filling them in. | brian | |
Suggested by: Theo de Raadt <deraadt@cvs.openbsd.org> | |||
1997-12-21 | modernize | Todd T. Fries | |
1997-12-21 | Index: systems.c | brian | |
=================================================================== RCS file: /home/ncvs/src/usr.sbin/ppp/systems.c,v retrieving revision 1.31 diff -u -r1.31 systems.c --- systems.c 1997/12/17 21:22:01 1.31 +++ systems.c 1997/12/21 01:35:58 @@ -288,6 +288,8 @@ if (issep(*cp)) { n = strspn(cp, " \t"); cp += n; + if (*cp == '#') + continue; len = strlen(cp); if (!len) continue; | |||
1997-12-21 | clean | Theo de Raadt | |
1997-12-21 | Correct the "how to find out if the line is up" example. | brian | |
1997-12-21 | ugh | Theo de Raadt | |
1997-12-21 | pretty | Theo de Raadt | |
1997-12-21 | Typo | Todd C. Miller | |
1997-12-21 | pcmcia_cntrl goes in section 8 and is not called 'pwd' ;-) | Todd C. Miller | |
1997-12-20 | ipforwarding option in rc.conf | Theo de Raadt | |
1997-12-20 | indent | Theo de Raadt | |
1997-12-20 | Refer i386 users to installboot(8). | Jim Rees | |
1997-12-20 | partial sync | Theo de Raadt | |