summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* 1) Back out ~/.login_conf disableache2001-09-252-8/+5
| | | | 2) Pick only "me" class from ~/.login_conf as documented
* - Correct capitalization of a function name.murray2001-09-241-2/+3
| | | | | | | | - Add a missing word to form a complete sentence. PR: docs/30626 Submitted by: Dan Lukes <dan@obluda.cz>, and swear@blarg.net (Gary W. Swearingen)
* Turn on WARNS?= 2 for libdevstat.ken2001-09-233-24/+30
| | | | Submitted by: "Sergey A. Osokin" <osa@freebsd.org.ru>
* Note that strdup(3) will set errno if memory allocation fails. Thismike2001-09-231-1/+4
| | | | | | is also required by the forthcoming POSIX.1-200x standard. Obtained from: malloc.3
* Fix a whole bunch of dependancy bugs and make it actually work when thedfr2001-09-221-7/+10
| | | | size is not a multiple of eight.
* Fix byte swapping - it was totally broken.dfr2001-09-222-5/+6
|
* Reset ``schg'' flag before removing stale libs.ru2001-09-221-0/+1
|
* o Modify access(2) man page to describe eaccess(2), and add a symlinkrwatson2001-09-212-4/+20
| | | | | | so man eaccess will return the access(2) man page. Obtained from: TrustedBSD Project
* Fixed the bug that prevented communication with FTP servers behindru2001-09-211-3/+4
| | | | | | | | | | | | | | | NAT in extended passive mode if the server's public IP address was different from the main NAT address. This caused a wrong aliasing link to be created that did not route the incoming packets back to the original IP address of the server. natd -v -n pub0 -redirect_address localFTP publicFTP Note that even if localFTP == publicFTP, one still needs to supply the -redirect_address directive. It is needed as a helper because extended passive mode's 229 reply does not contain the IP address. MFC after: 1 week
* Replace our stale-lib cleanup with a better one. (less bloated)ru2001-09-218-35/+10
|
* Replace my stale-lib cleanup with a better one. (less noisy)peter2001-09-217-7/+35
| | | | Submitted by: ru
* Put on my peril-sensitive sunglasses. Remove any old libraries thatpeter2001-09-217-0/+7
| | | | | | we have just installed a replacement for. This should solve the problem of having a stale /usr/lib/libc.so.4 after we put a fresh /usr/lib/compat/libc.so.4 in its place.
* Document the FTS_ROOTPARENTLEVEL and FTS_ROOTLEVEL constants.ru2001-09-201-5/+9
|
* Shared libraries from 4.4-FreeBSD needed for proper binary compatibility.obrien2001-09-202-11932/+12011
|
* Add support for loading bzip2-compressed filesystems. Among other thingssobomax2001-09-187-5/+371
| | | | | | | this would allow to load bzip2-compressed kernels/modules from the loader(8) (support for that will be committer separately). MFC after: 1 month
* First appeared in 5.0, not in 4.4ache2001-09-171-1/+1
|
* style(9)mike2001-09-171-62/+56
| | | | Silence from: phantom
* Implement __FBSDID()dillon2001-09-1620-56/+57
|
* Disable per-user .login_conf support due to incorrect merging of localrwatson2001-09-162-0/+5
| | | | | | and globaly settings. An alternative implementation will be developed. Reported by: Przemyslaw Frasunek <venglin@freebsd.lublin.pl>
* Revamp FBSDID's for libatm. Restore original import rcsid as per bdedillon2001-09-156-39/+17
| | | | Reviewed by: various people
* o Add a comment noting that the early setting of privileges for the purposerwatson2001-09-151-2/+6
| | | | | | | of NFS home directory and root directory processing fails to include additional groups. This doesn't impact the final credential, but does mean that users may be denied login even when additional groups might allow it.
* Convert a library to use the new __FBSDID()'s for testing and reviewdillon2001-09-156-24/+12
| | | | purposes.
* Unbreak build-tools -- build and use up-to-date ${HEADERS}.ru2001-09-142-4/+4
| | | | | | | | | These might not be present in /usr/include, or they may be incompatible with the version we are building (for library upgrades/downgrades). This stopped the RELENG_4 buildworld on a -CURRENT box. Well, this only fixes the issue if MFC'ed. :-)
* Typo: s/conatains/contains/guido2001-09-121-1/+1
| | | | MFC after: 1 week
* KSE Milestone 2julian2001-09-121-15/+16
| | | | | | | | | | | | | | Note ALL MODULES MUST BE RECOMPILED make the kernel aware that there are smaller units of scheduling than the process. (but only allow one thread per process at this time). This is functionally equivalent to teh previousl -current except that there is a thread associated with each process. Sorry john! (your next MFC will be a doosie!) Reviewed by: peter@freebsd.org, dillon@freebsd.org X-MFC after: ha ha ha ha
* mdoc(7) police: changed pure POSIX text; added missing markup bits.ru2001-09-112-8/+12
|
* mdoc(7) police: removed commas from the standard (split) AUTHORS block.ru2001-09-111-3/+3
|
* Add more standards which we conform to.asmodai2001-09-091-1/+18
| | | | | | Note our implementation is not thread nor async-cancel safe. Explicitely note atof() does not check nor report errors. Note that strtod() should be used instead.
* Detail thread-safe and async-cancel-safe status.asmodai2001-09-091-0/+10
| | | | | | Also add C99 conformity status plus clarification that C99 leaves the flushing of unwritten data, closure of open streams, and removal of temporary files to the implementation.
* 1) If __SAPP stream is not seekable, remove __SAPP flag on first call insteadache2001-09-071-3/+10
| | | | | | | | | of repeating unsuccessful lseek call on each write (original stdio bug). 2) Save errno accross _sseek call in _swrite to not touch it in case write success (original stdio bug). 3) Add _sseek error checking back, but only for __SOPT mode now.
* Move to using .In instead of .Fd #include <> for include mark-up.asmodai2001-09-0727-39/+39
| | | | Inspired by comment from: dd
* reconnect strfmon.c to build listphantom2001-09-071-1/+1
|
* Fix some mdoc nits caused by my knowledge not being too up-to-date onasmodai2001-09-071-9/+12
| | | | | | mdocNG. Submitted by: dd
* Port to ia64, taking into account the fact that pagesizes may be variable.dfr2001-09-071-0/+11
|
* Add strfmon.3 to the fray.asmodai2001-09-072-1/+89
| | | | | | | | This is a first cut, but enough to help people interested in using it further than before. More text coming to illustrate use and provide more details. Based on standards' text.
* For now just back out seek error checking in __SAPP case, it cause problemsache2001-09-071-2/+2
| | | | | | with non-seekable streams. Now here is what here was originally, but it is ugly, producing unneded seek syscall on each non-seekable stream write. I'll think about proper solution later.
* Fix all the ambiguous or erroneous statements of the brk(2)yar2001-09-061-55/+87
| | | | | | | | manpage by taking its text from NetBSD and editing it further. This also improves the page's mdoc(7) markup style. Reviewed by: ru Obtained from: NetBSD
* correctly wrap macros with { }phantom2001-09-061-2/+3
|
* Add zopen(), a stdio wrapper for gzipped data streams.kris2001-09-062-1/+41
| | | | Obtained from: NetBSD
* strfmon(3) is not ready to go live.obrien2001-09-061-1/+1
|
* Add strfmon(3) implementation. It still contains few XXX's because I lostphantom2001-09-052-3/+618
| | | | | | | | | my last version of this work due to HDD crash, but this version cleanly passed all POSIX and SuSv2 tests. I am working on testing scripts which should test this implementation against all locales and surely more fixes will come soon. Reviewed by: ache, silence at -audit & -developers
* mdoc(7) police: markup and minor content fixes.ru2001-09-052-73/+61
| | | | | | | | | | | | o Removed whitespace at EOL o Removed hard sentence breaks o Added cap_size() to the NAME section o Normalized .Nd descriptions o Fixed the abuses of .Nm and .Va o Fixed some DESCRIPTION texts o Fixed the RETURN VALUES and ERRORS texts to look more traditional Reviewed by: tmm
* Use fseeko() instead of fseek() (u->offset is already an off_t), and markdes2001-09-051-4/+4
| | | | some function arguments as unused.
* Add Thomas Moestl and Chris Faulhaber to the author list for POSIX.1erwatson2001-09-051-0/+2
| | | | | | support. Obtained from: TrustedBSD Project
* Portability fix: use unsigned cast to guaranteed positive part of expressionache2001-09-042-2/+2
| | | | | in case {L}LONG_MAX > abs({L}LONG_MIN). Non-functional change - we don't have any such platforms.
* Remove rcsids and unneded includeache2001-09-046-34/+12
|
* 'acc' is not initialized in one hypotetical case, fix itache2001-09-044-8/+8
|
* 1) repair the return value in the PAM_RETURN() macro (Side effects!!).markm2001-09-041-2/+3
| | | | | | | 2) canonicalise the options use in pam_options(). Submitted by: Gunnar Kreitz <gunnark@chello.se> PR: 30250
* Locale *is* used in strto*l*(), at least for isspace(), so removeache2001-09-048-58/+105
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | 'locale not used' statement from comments and BUGS section of manpage. strtol(): fix non-portable 'cutoff' calculation using the same method as in strtoll(). Cleanup 'cutoff' calculation, remove unneded casts. Misc. cleanup to make all functions looks the same. Implement EINVAL reaction per POSIX, document it in manpage, corresponding POSIX example quotes here: ------------------------------------------------ If the subject sequence is empty or does not have the expected form, no conversion is performed; the value of str is stored in the object pointed to by endptr, provided that endptr is not a null pointer. If no conversion could be performed, 0 shall be returned and errno may be set to [EINVAL]. [EINVAL] The value of base is not supported. Since 0, {LONG_MIN} or {LLONG_MIN}, and {LONG_MAX} or {LLONG_MAX} are returned on error and are also valid returns on success, an application wishing to check for error situations should set errno to 0, then call strtol( ) or strtoll ( ), then check errno. -----------------------------------------------------
* Implement _setjmp()/_longjmp().dfr2001-09-041-125/+345
| | | | Obtained from: Intel's EFI toolkit
OpenPOWER on IntegriCloud