summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
1999-06-22do it right this timeArtur Grabowski
1999-06-22UVM support + some cleanupArtur Grabowski
1999-06-21Update.Angelos D. Keromytis
1999-06-18new mandoc-style pcap(3) man page; kwesterback@home.comAaron Campbell
1999-06-17When finding the end of dst, never traverse more than siz bytes. ThisTodd C. Miller
keeps us from misbehaving if the user gives us a src string that is not NUL-terminated. This is one of those "should not happen" cases but it is good to play it safe. Pointed out by Casper Dik <casper@holland.sun.com>
1999-06-17fix RCS tagsBrad Smith
1999-06-16More xref sorting under SEE ALSO.Alex Feldman
1999-06-15this should definately have been cranked beforeTheo de Raadt
1999-06-15ncurses-5.0-990614 -- only affects ada stuff which we don't ship so just ↵Todd C. Miller
update NCURSES_VERSION_PATCH
1999-06-15changes required for powerpc libc_r support.Dale S. Rahn
1999-06-15Remove pthread_atfork()David Leonard
1999-06-15Remove pthread_atfork(). It was only part of draft 10 for a little while and ↵David Leonard
was removed before stddization.
1999-06-14mention the process' pid in the debug message. greatly helps to debug ↵David Leonard
problems when fork()ing
1999-06-14cvs skipped these files in the previous commit for mysterious reasonsTodd C. Miller
1999-06-14ncurses-5.0-990612Todd C. Miller
1999-06-09document cancellation point handling a bit betterDavid Leonard
1999-06-09sync with freebsdDavid Leonard
1999-06-07replacement pipe() system call; copies data into place inside kernel, soTheo de Raadt
that EFAULT return value is possible
1999-06-06adjtime(2) did not return EFAULT for bad olddelta ptr; ↵Theo de Raadt
darrenr@merlin.reed.wattle.id.au
1999-06-06ncurses-4.2-990605Todd C. Miller
1999-06-06add dot_quad_addr_new(); which can handle 255.255.255.255 addressesTheo de Raadt
1999-06-06some NAME section cleanupAaron Campbell
1999-06-06Grammatical, spelling, and format fixesPaul Janzen
1999-06-05stronger suggestTheo de Raadt
1999-06-05use .Tn instead of .Em for logical/bitwise OR + ANDAaron Campbell
1999-06-05capitalize the acronym IDAaron Campbell
1999-06-05change some .Em/.Va to .Li, looks nicerAaron Campbell
1999-06-05change some .Va to .Li, also more .DvAaron Campbell
1999-06-05some more .DvAaron Campbell
1999-06-04some repairs, add example to strdup(3) pageAaron Campbell
1999-06-04add examplesAaron Campbell
1999-06-04add an example, similar to the one in strspn.3Aaron Campbell
1999-06-04add an example; pattonme@ns.ra.pae.osd.milAaron Campbell
1999-06-04Be consistent about the relaxation of invalid host name checking.Niklas Hallqvist
This allows CNAMEs to PTRs with names including slashes, something not really RFC-compliant but still in general use.
1999-06-04After some constructive criticism from pjanzen@ and some e-mail tag:Aaron Campbell
- only use the .Dv NULL form when referring explicitly to a function argument or return value - otherwise, use these forms: o non-null o null-terminated (hyphenated form for predicate adjective) o else, null terminated, or null terminate, whichever the case o null pointer, null byte, null string, etc. - may use NUL to refer to an ASCII NUL, but it doesn't need a .Tn macro In general, capitalizing the word "null" everywhere is unnecessary and makes the man pages harder to read. The above is consistent with popular programming texts (i.e., K&R, Stevens).
1999-06-03egcs generates broken code for -O2 on sparcTheo de Raadt
1999-06-03-20 -> \-20Aaron Campbell
1999-06-03use \-1, not -1, to change the meaning of `-' to minus sign from hyphen;Aaron Campbell
pjanzen@
1999-06-02A couple of more __MIPSEX__Per Fogelstrom
1999-06-01getfsstat/getmntinfo do not require inclusion of <sys/ucred.h>Todd C. Miller
1999-06-01getfsstat now takes a size_t, not long, for the length parameterTodd C. Miller
1999-05-31Clarify usage message.Angelos D. Keromytis
1999-05-31Sanitize prototypes and variable extern definitions, removeAngelos D. Keromytis
unnecessary header file, add prototypes header file for utility building.
1999-05-31Add -WallAngelos D. Keromytis
1999-05-31Correct prototype and invocation, eliminate a warning or three.Angelos D. Keromytis
1999-05-31New struct statfs with mount options. NOTE: this replaces statfs(2),Todd C. Miller
fstatfs(2), and getfsstat(2) so you will need to build a new kernel before doing a "make build" or you will get "unimplemented syscall" errors. The new struct statfs has the following featuires: o Has a u_int32_t flags field--now softdep can have a real flag. o Uses u_int32_t instead of longs (nicer on the alpha). Note: the man page used to lie about setting invalid/unused fields to -1. SunOS does that but our code never has. o Gets rid of f_type completely. It hasn't been used since NetBSD 0.9 and having it there but always 0 is confusing. It is conceivable that this may cause some old code to not compile but that is better than silently breaking. o Adds a mount_info union that contains the FSTYPE_args struct. This means that "mount" can now tell you all the options a filesystem was mounted with. This is especially nice for NFS. Other changes: o The linux statfs emulation didn't convert between BSD fs names and linux f_type numbers. Now it does, since the BSD f_type number is useless to linux apps (and has been removed anyway) o FreeBSD's struct statfs is different from our (both old and new) and thus needs conversion. Previously, the OpenBSD syscalls were used without any real translation. o mount(8) will now show extra info when invoked with no arguments. However, to see *everything* you need to use the -v (verbose) flag.
1999-05-30Careless: I forgot to propagate obvious consts.Marc Espie
1999-05-30Revertion of last change, which was due to emacs' stupid ideaNiklas Hallqvist
of keeping the "*Shell Command Output*" buffer's wd from its creation instead of using the last command's wd!!!!
1999-05-30Some extra error checking, documentation and style wrt connectionsNiklas Hallqvist
1999-05-30grammar and punctuationPaul Janzen