Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
1997-12-20 | make -xpg4.2 abbreviation XPG4.2; kleink | Theo de Raadt | |
1997-12-20 | clone my F_FREESP stuff to ibcs2 | Theo de Raadt | |
1997-12-20 | do not override other ppp manpage | Theo de Raadt | |
1997-12-20 | add F_FREESP | Theo de Raadt | |
1997-12-20 | Simplify some push-back code (e.g. for left and right quotes) so that | Theo de Raadt | |
it uses pbstr() instead of doing the characters individually (in reverse order) with putback(); cgd | |||
1997-12-20 | add SKIP entry | Theo de Raadt | |
1997-12-20 | openbsd maintainer changed from imp to me | joey | |
1997-12-20 | fix the PATH problem. | Todd T. Fries | |
now things SHOULD compile with a PATH of /usr/bin:/bin ... ANY executable not in these two subdirs should have ${SETENV} prepended to set the right path. | |||
1997-12-19 | Reset our "ifaddr" to zero if the "set ifaddr" fails in | brian | |
-auto mode. This makes ppp correctly exit if you kick it off twice in auto mode with the same label (read: interface). | |||
1997-12-19 | sprintf bye bye | Theo de Raadt | |