summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Add yet one comment saying that range checking already doneache1997-02-031-0/+1
| | | | to stop people "fixing" it by snprintf
* Cruft cleanup to eliminate useless warningspst1997-02-021-3/+6
|
* Make this texinfo file info-aware.joerg1997-02-012-5/+69
| | | | | | | I notice info(1) has some problems moving back and forth through the resulting info file, but emacs doesn't, so i figure it's rather a problem with info(1) itself. To the least, this file installs now finally.
* Don't use hardcoded *roff font change requests.mpp1997-01-312-3/+5
|
* Don't use hardcoded *roff font change requests. Do itmpp1997-01-317-18/+56
| | | | via mdoc macros instead.
* Very minor mdoc cleanup.mpp1997-01-3119-36/+36
|
* Update to reflect current include files.mpp1997-01-301-3/+12
|
* Update to reflect current include files.mpp1997-01-305-32/+41
|
* Dont' mlink getgrent.3 to setgrfile.3, since there is nompp1997-01-301-1/+1
| | | | setgrfile() function.
* Update to reflect current include files.mpp1997-01-307-47/+172
|
* Update to reflect current include files.mpp1997-01-301-2/+2
|
* Correct "Chflags() will fail it:" to read "Chflags() will fail if:".jmacd1997-01-301-1/+1
|
* Fix free()ing block twice, remove unused function.davidn1997-01-301-15/+1
|
* Fix typo .->, for default separators in login_getcaplist().davidn1997-01-291-1/+2
|
* Completed fixes with login_getcapsize().davidn1997-01-291-1/+2
|
* Added -Wall to CFLAGS, cleaned up (all avoidable) warnings.davidn1997-01-292-2/+3
|
* 1) Fixed bug in free()ing internal string/array wheredavidn1997-01-291-24/+32
| | | | | | | allocated size not reset to 0 causing NULL dereference on call after login_close(). 2) Modify login_capsize() behaviour to match manpage, allow concatenated sizes; ie. 10m500k
* #include <sys/stat.h> for umask() prototype.davidn1997-01-291-0/+1
|
* Update to reflect the current mount.h.mpp1997-01-291-18/+42
|
* I was porting something from sysV world and found our cross referencesobrien1997-01-272-0/+2
| | | | | not quite as good as I would expect. So I'm introducing mknod to mkfifo, and vice-versa.
* Document a couple of additional errno's.mpp1997-01-261-1/+7
| | | | | Submitted by: Steinar Haug and Heiko W. Rupp Obtained from: NetBSD-bugs & FreeBSD-current mailing lists
* Adds slice_type_name() which extends chunk_n[] for subtype's too.obrien1997-01-234-1/+63
| | | | Curorary review by: phk
* Only send QUIT if the last operation didn't time out (otherwise you'rejkh1997-01-211-2/+5
| | | | just going to hang forever on the close).
* Sort cross references.wosch1997-01-20141-276/+277
|
* Sort cross references.wosch1997-01-205-11/+11
|
* Yow! Is my face red... I just noticed (duh) that signal() always installsjkh1997-01-171-9/+41
| | | | | | | | | | the handler with SA_RESTART set, so the system calls I wanted to have the timeout effect will just restart instead (which is NOT what I wanted). Sheepishly use sigaction() like a good boy and make timeouts actually do something. Also pass errors out more effectively so that fetch(1) actually understands what went wrong.
* Sweep through the tree fixing mmap() usage:alex1997-01-162-3/+3
| | | | | | | | | | | | - Use MAP_FAILED instead of the constant -1 to indicate failure (required by POSIX). - Removed flag arguments of '0' (required by POSIX). - Fixed code which expected an error return of 0. - Fixed code which thought any address with the high bit set was an error. - Check for failure where no checks were present. Discussed with: bde
* Use collate for national [a-z]-like rangesache1997-01-161-8/+13
| | | | Should go in 2.2
* The following patch to lib/libc/stdio implements positional arguments injkh1997-01-142-22/+414
| | | | | | | | | a manner consistent with other implementations. Its done in a way that adds only a tiny amount of overhead when positional arguments are not used. I also have a test program to go with this, but don't know where it belongs in the tree. Submitted-By: Bill Fenner <fenner@FreeBSD.ORG>
* Make the long-awaited change from $Id$ to $FreeBSD$jkh1997-01-14643-724/+724
| | | | | | | | This will make a number of things easier in the future, as well as (finally!) avoiding the Id-smashing problem which has plagued developers for so long. Boy, I'm glad we're not using sup anymore. This update would have been insane otherwise.
* When attempting to load a `lastditch' timezone (e.g., because the loadwollman1997-01-131-7/+8
| | | | | | | | | of the user's timezone failed), don't bail if the specified timezone doesn't have an offset; in this case it isn't going to. (Perhaps it would be better to change the caller to always supply one, but this is quick and clean and fixes the bug in the easiest possible way.) Should be in 2.2. Fixes (properly) PR#1740.
* Bump libutil.so version (2.1 -> 2.2) since a whole heap of new functionspeter1997-01-131-1/+1
| | | | | | were added with the login class stuff. This is needed since libutil.so.2.1 is what is used in RELENG_2_2 and well into the release cycle. We only bump once per release cycle as needed.
* Convert to mdoc format.jdp1997-01-121-136/+152
| | | | | | | Add descriptions of RTLD_LAZY and RTLD_NOW. Correct the synopsis to agree with the actual function prototypes. Add clarifications of a few things. Clean up the wording in a few places.
* Add definitions of RTLD_LAZY and RTLD_NOW.jdp1997-01-121-0/+6
|
* Back out the last backout. This should work now that the bsd.info.mkpeter1997-01-122-4/+4
| | | | spammed revisions have been restored.
* Disconnect the doc subdir as well, bsd.info.mk freaks out if therepeter1997-01-122-4/+4
| | | | is no ${INFO} variable set.. :-(
* Add missing RETURN VALUES/ERRORS sections.mpp1997-01-126-13/+69
|
* Rename the DIAGNOSTICS sections in several man pagesmpp1997-01-126-7/+7
| | | | to RETURN VALUES like they should be.
* Set the "crt_ldso" member of the crt-to-ld.so interface structure. Thisjdp1997-01-111-1/+2
| | | | | | | | | | was apparently overlooked at the time the member was added. Its absence causes some error messages from the dynamic linker to begin with "(null):" instead of with the pathname of the dynamic linker as they should. I am also adding a work-around to the dynamic linker, to cope with legacy binaries that were built with older versions of crt0.
* Remove the EINVAL error from the ERRORS sections thatmpp1997-01-1127-70/+10
| | | | | say is means that a pathname had the high-order bit set, since this is no longer an error.
* Minor mdoc fixes in msync.2 and munmap.2.mpp1997-01-113-6/+31
| | | | | | Add RETURN VALUES and ERRORS sections to mincore. Closes PR# 1493.
* Forgot a .El macro.mpp1997-01-111-0/+1
|
* Add RETURN VALUES and ERRORS sections.mpp1997-01-111-3/+28
|
* Some mdoc cleanup. Also added a RETURN VALUES and ERRORSmpp1997-01-111-22/+45
| | | | | | section. Part of PR# 1493.
* Remove the comment about file names having tompp1997-01-111-2/+1
| | | | | | be 7 bit clean, since it isn't true anymore. Part of PR# 1493.
* Bring stat(2) into line with what is now actually inmpp1997-01-111-13/+34
| | | | | | stat.h. Also add a little blurb regarding st_mtime & friends clarifiying how they are defined in a non-_POSIX_SOURCE envorinment. Closes PR# 1089.
* Add a couple of additional xrefs.mpp1997-01-111-1/+3
|
* This texinfo documentation isn't really enough texinfo-izedjmacd1997-01-111-2/+2
| | | | | to construct an info file from, as documented at the top. There are no nodes, so I'm commenting out the INFO= list.
* Correct logic braino when attempting to exclude loopback addresses onpeter1997-01-091-2/+2
| | | | | | the first pass. Submitted by: Greg Lehey <grog@lemis.de>
* Two minor changes to try and make it more robust in the face of manypeter1997-01-091-2/+4
| | | | | | | | | interfaces, until it's redone to use sysctl(). - bump the SIOCGIFCONF buffer size from 1K to 8K - if we didn't find a suitable address, return a failure. Previously if it didn't find anything it left the return address uninitialised. Perhaps it would be better to return AF_INET/111/127.0.0.1 rather than failing?
OpenPOWER on IntegriCloud