summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Don't open the swap file. The open descriptor for it hasn't been usedbde1999-08-252-9/+1
| | | | | | for over 5 years since we switched to using procfs for kvm_uread(). This cleanup was motivated by recent breakage of the default swap file (/dev/drum) when swapon() has not been called.
* Document ENOSYS error.chris1999-08-231-1/+5
| | | | PR: docs/13290
* Aallow ppp to work with Nortel Networks Extranet Switchbrian1999-08-221-0/+6
| | | | | | product and Windows NT tunneling. Submitted by: Chain Lee <chain@nortelnetworks.com>
* Typo: 102 => 192 (PR: docs/13310 - Maxim Sobolev <sobomax@altavista.net>)hoek1999-08-221-2/+2
|
* Assorted bug fixes.yokota1999-08-225-21/+37
| | | | | | | | | | | | | | | | | | | | | | | | keyboard.c - Call tcsetattr() in VGLKeyboardEnd() to restore tty, only when tty attributes have been previously saved. PR: misc/9524 Submitted by: Katusyuki 'kei' Maeda (kei@nanet.co.jp) - Set up the tty raw mode correctly. main.c - Restore VESA_800x600 raster text mode correctly in VGLEnd(). Submitted by: des text.c - Allocate the correct size of a font buffer in VGLSetFontFile(). I forgot the submitter ;-( simple.c, bitmap.c - Fix address calculation for the VGA mode X in VGLGetXY() and VGLBitmapCopy(). - Fix typo (dsty -> dstx) in __VGLBitmapCopy(). Reviewed by: sos
* This is the addition of a syslog(3) security.* top-level category. Thisgreen1999-08-211-1/+4
| | | | | | | | | should be used from now on for anything security but not auth-related. Included are updates for all relevant manpages and also to /etc files, creating a new /var/log/security. Nothing in the system logs to /var/log/security yet as of the time of this commit. Reviewed by: rgrimes, imp, chris
* Add warnings, ala mktemp, to tempnam and tmpnam as a reminder thatimp1999-08-212-3/+13
| | | | | | these are inherently unsafe interfaces. Do not allow TMPDIR to override path for setuid/setgid programs.
* move sanity check of timeval struct so as not to segfault when passedalfred1999-08-203-15/+15
| | | | | | | a null pointer. Pointed out by: Thomas Gellekum <tg@ihf.rwth-aachen.de> Reviewed by: eivind
* Restore INTERNALLIB.abial1999-08-201-0/+1
| | | | Noticed by: bde,jdp
* Fix MLINKS.mdodd1999-08-201-3/+2
| | | | Noticed by: Norman C. Rice <nrice@emu.sourcee.com>
* When checking if there is a stack to free, observe the fact that itjb1999-08-203-18/+69
| | | | | | | | might have been mmapped, and if so, passing the pointer to free() is really not a good idea. [ In the next millenium, when I've taken over the world, I'm going to ban 8 character tabs. You've been warned. ]
* Fix EINVAL related descriptions.rse1999-08-204-12/+14
|
* Add 2 functions: el_data_set() and el_data_get() which do what youmdodd1999-08-204-2/+37
| | | | | | | | would expect. (Allow user data to be associated with an EditLine context). As this changes no existing interfaces and doesn't alter any structs visable to the user I've been told that its not necessary to bump the version of the library.
* time_to_sleep->tv_nsec > 1000000000alfred1999-08-193-6/+6
| | | | | -to- time_to_sleep->tv_nsec >= 1000000000
* Sanity check time structures passed in, return EINVAL like the systemalfred1999-08-1912-18/+54
| | | | | | | | calls do to avoid corrupting the thread library's concept of wakeup time. PR: kern/12141 Reviewed by: deischen, eivind
* handle under/overflow of time values in a more robust manner,alfred1999-08-193-9/+9
| | | | | | | | there may be an overflow that need to be adjusted more than once. Pointed out by: Fabian Thylmann <fthylmann@stats.net> Reviewed by: eivind, jb
* Add pam_radius.so manual page.abial1999-08-182-1/+130
| | | | Reviewed by: jdp
* Fix a bunch of broken cross-referenceschris1999-08-181-2/+2
|
* Take out a reference to ccb(4). I never got around to writing it.ken1999-08-171-3/+2
| | | | Reported by: "Alexey M. Zelkin" <phantom@cris.net>
* Fix description of the _thread_autoinit_dummy_decl trick.rse1999-08-171-3/+3
|
* Reverted to revision 1.8 as previous fix causes fts_open with with apho1999-08-152-2/+2
| | | | | | path name argument with a trailing '/' to fail. Reviewed by: phk
* Various man page cleanup:mpp1999-08-1518-81/+81
| | | | | | | | | | - Sort xrefs - FreeBSD.ORG -> FreeBSD.org - Be consistent with section names as outlines in mdoc(7) - Other misc mdoc cleanup. PR: doc/13144 Submitted by: Alexy M. Zelkin <phantom@cris.net>
* Reviewed by: phkpho1999-08-142-2/+2
| | | | | | | When fts_open is used with option FTS_NOCHDIR the full path entry of type FTS_DP is returned with a trailing '/' if the final directory is empty. This fix coresponds to netbsd's __fts13.c v. 1.16
* Bad reference to exit(2) changed to exit(3).chris1999-08-141-2/+2
|
* Bad reference exit(2) changed to exit(3)chris1999-08-142-4/+4
|
* Add $Id$ tag.chris1999-08-141-0/+2
|
* Bad reference time(2) changed to time(3)chris1999-08-141-1/+1
|
* Bad reference of termios(3) changed to termios(4).chris1999-08-141-2/+2
|
* Bad reference of sysctl(1) changed to sysctl(8)chris1999-08-141-3/+3
|
* Bad reference to lstat(3) changed to lstat(2)chris1999-08-141-2/+2
|
* Fix .Xr line for `getpagesize'chris1999-08-141-2/+2
|
* Fix some bad references:chris1999-08-141-3/+3
| | | | | fopen(2) -> fopen(3) fclose(2) -> fclose(3)
* Change reference to mount(1) to mount(8)chris1999-08-141-2/+2
|
* Change reference from kldload(3) to kldload(2)chris1999-08-131-2/+2
|
* Axe LOGIN_CAP_AUTH.sheldonh1999-08-133-571/+2
| | | | | | PR: 10115 Reported by: Gene Skonicki <gene@cif.rochester.edu> Requested by: jdp
* Add check for runnable threads before polling file descriptors.deischen1999-08-123-42/+48
| | | | Submitted by: tegge
* Treat an attempt to read from a write-only stream more consistently.rnordier1999-08-101-1/+2
| | | | | Submitted by: Anton Berezin <tobez@plab.ku.dk> PR : 12852
* Use the latest version of these files from OpenBSD.imp1999-08-103-21/+26
| | | | | | | | | | 1) Safty change from casper dik was added to OpenBSD's sources since I grabbed them. milltert@openbsd.org 2) Split up strlcpy to improve efficiency of the common case. milltert@openbsd.org 3) Cleanup of cross references for man page. {alex,aaron}@openbsd.org Pointed out by: deraadt@openbsd.org
* Import strl{cat,cpy} from OpenBSD.imp1999-08-104-6/+289
| | | | Obtained from: OpenBSD
* Fixed missing "G" in the list item for the main description of %g andbde1999-08-081-2/+2
| | | | %G formats.
* Add RCS IDs to those files without them.deischen1999-08-05237-254/+423
| | | | | | | Fix copyrights (s/REGENTS/AUTHOR). Suggested by: tg Approved by: jb
* Fix thread initialization to allow for the case where stdio filedeischen1999-08-057-39/+51
| | | | | | | descriptors are not opened. PR: bin/12853 Reviewed by: jb
* Mention that EXIT_SUCCESS and EXIT_FAILURE are preferred overhoek1999-08-011-1/+7
| | | | sysexits.h-values as exit codes for portable programs.
* Fixed $Id$.bde1999-07-311-3/+3
| | | | | | | Removed POSIX.1/NetBSD markup (braces) for NAME_MAX, etc. We don't define this. Most FreeBSD man pages hard-code the limits; in fact, utimes.2 recently became the only file in libc/sys/*.2 that mentions NAME_MAX. There probably should be mandoc macros for this.
* Removed a duplicate reference to System V.4.bde1999-07-311-2/+1
|
* Fixed syntax error in previous commit.bde1999-07-311-2/+3
|
* FIxed disordering in previous commit. Fixed some old disorder.bde1999-07-311-3/+3
|
* Document that writev(2) can fail with ENOBUFS.nik1999-07-301-1/+3
| | | | | | | | Text is a compromise based on messages from Wes Peters, Ville-Pertti Keinonen, and Matt Dillon. PR: docs/10512 Submitted by: Howard Goldstein <hgoldst@mpcs.com>
* Use the .At macro when referencing versions of AT&T UNIX.mpp1999-07-304-8/+12
| | | | | | Note: you need to install the current groff tmac macros for these man pages to format correctly. Specifically, rev 1.21 of contrib_groff/tmac/doc-syms in -current, or rev 1.17.24 for 3.2-stable
* Document the getdents(2) system call. The documentation wasmpp1999-07-303-165/+29
| | | | | | added to the getdirentries(2) man page because 95%+ of that man page comprised the text of the getdents(2) man page I obtained from NetBSD.
OpenPOWER on IntegriCloud