summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
1997-04-28Document dc flag from NetBSD (mellon)Todd C. Miller
1997-04-28- cast usages of *printf() to void since we don't check return valTodd C. Miller
- move an assert to be *before* a strcpy() where it can do some good. - integrate NetBSD fixes for 64-bit machines (NetBSD PR #3450, Ross Harvey) - add lite2 tags
1997-04-28Deal with $TERM not being set (like in single user mode).Todd C. Miller
1997-04-28Use strtoul() not strtol() when assigning to an unsigned long.Todd C. Miller
1997-04-28Added faddr/laddr on the pfkeycb, for completeness.Angelos D. Keromytis
1997-04-282.1Niklas Hallqvist
1997-04-282.1Niklas Hallqvist
1997-04-282.1Niklas Hallqvist
1997-04-282.1Niklas Hallqvist
1997-04-282.1Niklas Hallqvist
1997-04-28Kernel release is 2.1.Jason Downs
1997-04-28Add getsecs(). Use biostime & biosdate routines.Tobias Weingartner
Parse and convert to seconds since epoch. Please test, there is a new command "time", which should print the current time (according to the BIOS) on the console.
1997-04-28Clean up terminal type handling.Jason Downs
1997-04-28Modernize protyped, switch to libtermlib.Jason Downs
1997-04-28Back out newer .USE code as it caused problems. I've done a "make build"Todd C. Miller
without problems and the problem Theo saw before is gone.
1997-04-28The type of a pointer to const characters is not the same as a const pointerNiklas Hallqvist
to non-const characters. Besides, the prototypes for copyin and friends, as well as timeout/untimeout takes void *, not caddr_t (char *), so I matched them. Slight KNF. This change makes it pass -Wcast-qual.
1997-04-28indentTheo de Raadt
1997-04-28Previous patch didn't make much sense. We now set the initial NFS xidAngelos D. Keromytis
(for requests) to some random value, and then increase that by a small (1-255) random value for each requests.
1997-04-27Random/unique NFS xids.Angelos D. Keromytis
1997-04-27buf oflow paranoiaTheo de Raadt
1997-04-27Randomize RPC xid.Angelos D. Keromytis
1997-04-27Typo and return value for arc4random().Angelos D. Keromytis
1997-04-27Even more reality. md.alpha is also fairly completeNiklas Hallqvist
1997-04-27re-randomize xid on reuse of a CLIENT *; pointed out by adam@math.tau.ac.ilTheo de Raadt
1997-04-27handle hex-like hostnamesTheo de Raadt
1997-04-27better failure msg; martin@rumolt.teuto.deTheo de Raadt
1997-04-27COPY -> INSTALL_COPY and STRIP -> INSTALL_STRIP changes.Todd C. Miller
For some reason the previous commit did not grab these.
1997-04-27COPY -> INSTALL_COPY and STRIP -> INSTALL_STRIPTodd C. Miller
This fixes namespace problems where STRIP is sometimes used as the name of the strip(1) to use and other times used as the flag to send install(1) when stripping (or not). COPY doesn't have this problem (yet) but was poorly named.
1997-04-27Further towards realityNiklas Hallqvist
1997-04-27Bring the sets closer to reality. mi & md.amiga is fairly completeNiklas Hallqvist
the others need more work for sure. Maybe we will not use the sets anyhow, but still I want this out of my tree.
1997-04-27What was I thinking?briggs
1997-04-27Allow BSDSRCDIR to point to a symlink. This means /usr/src can be a symlinkNiklas Hallqvist
without having to explicitly set BSDSRCDIR
1997-04-27Prototype fixes and cruft removal.Jason Downs
1997-04-27More includes for library prototypes.Jason Downs
1997-04-27No more setargs.c.Jason Downs
1997-04-27Pull in more includes to properly prototype library functions, kill localJason Downs
decls of library functions, kill local implementation of setproctitle(). This of course points out how utterly bad this code is and that someone needs to come in here with a chainsaw sometime.
1997-04-27Correct assumed editing mistakes.Jason Downs
1997-04-27Reality check.Jason Downs
1997-04-27PFKEY protocol control blocks.Angelos D. Keromytis
1997-04-26document the meaning of protocol = 0.michaels
1997-04-26my keyboard made a typo.michaels
1997-04-26correct declaration given for herror(3) and describe better.michaels
1997-04-26samplle boot.conf fileMichael Shalayeff
current placement is /etc/boot.conf .... change if you want, but i think that /boot.conf is much worse
1997-04-26boot.conf supportMichael Shalayeff
ttyname function in cons.c rdonly var 'tty' to view tty settings serial console soon
1997-04-26struct definitions in .h files and instances in .c file please.kstailey
Vic Able: > While <miscfs/kernfs/kernfs.h> has a kernfs_node, it depends > on a structure that's defined in <miscfs/kernfs/kernfs_vnops.c>. > Oops! That's not very social. :-) [I built a new kernel fine, but don't have time to run "make build" it is my intuition that this will not have any bad effects, but I didn't test. Just back it out if it hurts you and I'll try again.]
1997-04-26First argument to nanosleep(2) is const; so is the first argument toThorsten Lockert
copyin(9). Propagate this.
1997-04-26Use SYSLIBC_SCCS; these are syscallsThorsten Lockert
1997-04-26Add $OpenBSD$ tagsThorsten Lockert
1997-04-26Allow a private tag when we expand RCS identifiers ourselves as well.Thorsten Lockert
1997-04-25Cool. Drop oversized packets rather than splitting into mbufs. NetBSD log:gene
>From Mycroft: If we fail to allocate a cluster to hold a large packet, >simply drop it rather than using a chain of tiny mbufs.