summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
1997-12-22fix debug drive printingMichael Shalayeff
1997-12-22Don't forget to ntohs(sin.sin_port) (DUH!)brian
1997-12-22syncTheo de Raadt
1997-12-22syncTheo de Raadt
1997-12-22bocalan is differentTheo de Raadt
1997-12-21Don't set the tty variable to NULL when we lack a tty, leave it asTodd C. Miller
"unknown".
1997-12-21ifdef some definitions of NBPG that use kernel variables, when theAngelos D. Keromytis
file is included from userland programs (such as lsof)
1997-12-21ISA PnP supportJason Downs
1997-12-21ISA PnP supporting code from NetBSD, and a pccom driver that supports ISA PnP.Jason Downs
1997-12-21Obliterate old PnP `code' and outright replace with christos' code.Jason Downs
1997-12-21Updated for new PnP code.Jason Downs
1997-12-21Add (BSD) copyright headersbrian
1997-12-21sigh; move syslog up nearer the top. Any failures from this?Theo de Raadt
1997-12-21Cosmetic: Test for comment lines after the lenght has been established.brian
Pointed out by: Theo de Raadt <deraadt@cvs.openbsd.org>
1997-12-21Allow multiple (comma seperated) devices on the "set device" line.brian
Submitted by: Derek Inksetter <derek@saidev.com>
1997-12-21Mention that leading whitespace is ignored when identifying comments.brian
1997-12-21Zero struct sockaddr_??s before filling them in.brian
Suggested by: Theo de Raadt <deraadt@cvs.openbsd.org>
1997-12-21modernizeTodd T. Fries
1997-12-21Index: systems.cbrian
=================================================================== 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-21cleanTheo de Raadt
1997-12-21Correct the "how to find out if the line is up" example.brian
1997-12-21ughTheo de Raadt
1997-12-21prettyTheo de Raadt
1997-12-21TypoTodd C. Miller
1997-12-21pcmcia_cntrl goes in section 8 and is not called 'pwd' ;-)Todd C. Miller
1997-12-20ipforwarding option in rc.confTheo de Raadt
1997-12-20indentTheo de Raadt
1997-12-20Refer i386 users to installboot(8).Jim Rees
1997-12-20partial syncTheo de Raadt
1997-12-20make -xpg4.2 abbreviation XPG4.2; kleinkTheo de Raadt
1997-12-20clone my F_FREESP stuff to ibcs2Theo de Raadt
1997-12-20do not override other ppp manpageTheo de Raadt
1997-12-20add F_FREESPTheo de Raadt
1997-12-20Simplify some push-back code (e.g. for left and right quotes) so thatTheo de Raadt
it uses pbstr() instead of doing the characters individually (in reverse order) with putback(); cgd
1997-12-20add SKIP entryTheo de Raadt
1997-12-20openbsd maintainer changed from imp to mejoey
1997-12-20fix 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-19Reset our "ifaddr" to zero if the "set ifaddr" fails inbrian
-auto mode. This makes ppp correctly exit if you kick it off twice in auto mode with the same label (read: interface).
1997-12-19sprintf bye byeTheo de Raadt
1997-12-19gid_t is unsignedTheo de Raadt
1997-12-19carefulTheo de Raadt
1997-12-19comment this strncpy is safeTheo de Raadt
1997-12-19proactive buffer blocksTheo de Raadt
1997-12-19make mountd abort if getfh() not supported. reported by newsham@secnet.com, ↵Theo de Raadt
fixed by me
1997-12-19bye bye sprintfTheo de Raadt
1997-12-19If the peer asks for IP 0.0.0.0, choose an IP ourselvesbrian
without looking for it in our IP list (and if found, trying to ifconfig it!).
1997-12-19cleanupTheo de Raadt
1997-12-19Add Intel EtherExpress/10 device (ex0)don
1997-12-19syncTheo de Raadt
1997-12-18added kauthArtur Grabowski