summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Changes to support full make parallelism (-j<n>) in the worldjkh1997-10-052-4/+5
| | | | | | target. Reviewed by: <many different folks> Submitted by: Nickolay N. Dudorov" <nnd@nnd.itfs.nsk.su>
* Merged in better support of ISO 8601 from elsie.nci.nih.gov.helbig1997-10-032-62/+118
| | | | | Added the conversion specifiers %g and %G, that are replaced by the year which contains the greater part of the week in question.
* Teach ftpErrString to format UNIX errnos, since at least ftpLogin()fenner1997-10-021-1/+4
| | | | | | | | | | | can return UNIX errnos. When UNIX errnos catch up with FTP status codes (e.g. at 100) a new way will have to be found to tell which is which. This allows fetch to print errors like fetch: ftp.fu-berlin.de: No route to host instead of fetch: ftp.fu-berlin.de: Unknown error
* Add rudimentary support for using the keyboard.sos1997-10-014-3/+105
|
* Update to tcl8.0 release version.phk1997-10-011-14/+16
|
* Move locks from /etc/opielocks to /var/run/opielocks to keepache1997-10-011-1/+1
| | | | /etc non-writeable as possible
* Correct an ancient bogon which involved trying to read() from ajkh1997-10-011-10/+8
| | | | | | nuked file descriptor. This is probably why sysinstall's ftp xfer occasionally SEGV'd if you left things alone for a long time and the timeout code got called. Whoops!
* Bump minor numberache1997-09-291-1/+3
|
* Sort cross refereces in section SEE ALSO.wosch1997-09-2912-22/+23
|
* Endless loop.wosch1997-09-291-5/+5
| | | | | | | | | | | $ vipw [corrupt a line in editor, exit editor] pwd_mkdb: corrupted entry pwd_mkdb: at line #2 pwd_mkdb: /etc/pw.012585: Inappropriate file type or format re-edit the password file? [y]: n^D^D [hang]
* Add setutent.cache1997-09-291-2/+2
|
* EXT_KEYS gone, STD ommitedache1997-09-291-3/+2
|
* Add logwtmp.cache1997-09-291-2/+2
|
* Mergeache1997-09-291-16/+73
|
* Revert the previous prototype un-typo. Add a brief comment warning thatmsmith1997-09-281-1/+3
| | | | "fixing" it is not a good idea.
* Changes for KTH KerberosIVmarkm1997-09-281-6/+1
|
* Changes for KTH KerberosIV.markm1997-09-282-3/+3
| | | | Also quieten -Wall a bit.
* Typo fixmsmith1997-09-281-1/+1
|
* Fix typo in signal() prototypemsmith1997-09-281-1/+1
|
* Use revived __maskrune for digittointache1997-09-271-2/+2
| | | | Minor formatting
* Add mskanji.cache1997-09-251-1/+1
|
* Move it under XPG4 defineache1997-09-251-0/+2
|
* Move MSKanji under XPG4 defineache1997-09-251-8/+8
|
* __maskrune --> __istypeache1997-09-251-1/+1
|
* Submitted by: Sin'ichiro MIYATANI / Phase One, Inc <siu@phaseone.co.jp>julian1997-09-245-3/+119
| | | | | Basic support for the Shift JIS encoding of japanese. (and one tiny typo fixed in a comment)
* This commit was generated by cvs2svn to compensate for changes in r29747,ache1997-09-232-20/+31
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Official patch from infozipache1997-09-232-20/+31
| |
| * This commit was manufactured by cvs2svn to create branch 'VENDOR-libz'.cvs2svn1996-08-181-0/+35
| |
* | Apply fts() fix from PR#4593peter1997-09-222-2/+2
| | | | | | | | Submitted by: Dmitrij Tejblum <dima@tejblum.dnttm.rssi.ru>
* | Make selection logic more strict. Only select AF_INET loopback interfaceswpaul1997-09-211-3/+6
| | | | | | | | | | that are up on second (loopback only) pass, and only select non-loopback AF_INET interfaces that are up on first pass.
* | Many places in the code NULL is used in integer context, wherephk1997-09-184-6/+6
| | | | | | | | | | | | | | | | | | plain 0 should be used. This happens to work because we #define NULL to 0, but is stylistically wrong and can cause problems for people trying to port bits of code to other environments. PR: 2752 Submitted by: Arne Henrik Juul <arnej@imf.unit.no>
* | environmental -> environment.charnier1997-09-183-4/+4
| |
* | Some adjustments for the resolver use of poll(). For some reason I thoughtpeter1997-09-161-7/+8
| | | | | | | | | | | | | | an unimplemented syscall returned ENOSYS, rather than EINVAL. I have run statically linked code with this wrapper and it does appear to work fine on 2.2-stable which doesn't have poll(). ktrace shows the poll syscall fail once and the fallback to select() working.
* | Put a system call not present checking wrapper around the call topeter1997-09-161-9/+35
| | | | | | | | | | __getcwd(). I've got this libc code running on one of my machines at the moment without the __getcwd() syscall being present.
* | Fix yet a minor stylistic nit from Bruce.wosch1997-09-151-4/+4
| | | | | | | | (`cvs diff -ib' print one new char ;-).
* | Fix yet a minor stylistic nit from Bruce (Doesn't he have morephk1997-09-151-7/+9
| | | | | | | | | | | | important things to do ?? :-) Prepare for the likely case of a change in kernel algorithm.
* | Fix a buglet and a couple of stylistic nits from Bruce.phk1997-09-151-3/+2
| |
* | Potential bufferflow in getpwent(), getpwnam() and getpwuid()wosch1997-09-141-2/+7
| | | | | | | | | | PR: bin/4134 Submitted by: nick@foobar.org
* | Add __getcwd() syscall, and have getcwd() take a shot at it.phk1997-09-142-2/+13
| | | | | | | | | | If your kernel doesn't support __getcwd() or if __getcwd() cannot deliver because of cache expiry, it does the canonical thing.
* | Call poll(2) from within the resolver but adapt to older kernels without itpeter1997-09-141-26/+68
| | | | | | | | | | | | | | | | | | | | | | | | | | if necessary. This removes the need to malloc large fd_set's for selecting on high fd's (larger than FD_SETSIZE at libc compile time). The syscall adaptive stuff only happens on the very first call. SIGSYS is masked, and if the call to poll fails with ENOSYS, then we use select for the life of the program. If poll does not fail with ENOSYS, then we always use poll and skip the once-off signal masking gunk. This may be overkill, but it saved my neck a few times while working on multiple different sets of kernel sources, some with poll, some without.
* | A poll(2) manpage.peter1997-09-142-2/+190
| | | | | | | | Obtained from: NetBSD
* | Generate poll syscall stubpeter1997-09-141-2/+2
| |
* | Document SA_NOCLDWAIT.joerg1997-09-131-17/+38
| | | | | | | | Make all the SA_* flags go into a tagged list, to improve readability.
* | Removed superfluous quoting of function args.bde1997-09-074-6/+6
| |
* | Fixed style bug in pseudocode.bde1997-09-071-1/+1
| |
* | Upgrade to 2.4 (Fix -PKT_ALIAS_UNREGISTERED_ONLY)brian1997-09-065-4/+17
| | | | | | | | | | | | | | Submitted by: Charles Mott <cmott@srv.net> Add __libalias_version so that ppp can derive the correct library name for dlopen()
* | When compiling under elf, use correct library naming conventions. Alsopeter1997-09-051-3/+19
| | | | | | | | | | add the required extra symlink. Set the -soname to libcrypt.so so that the symlink is used at runtime rather than resolved at compile time.
* | If building under elf, have libskey.so depend on libmd and libcrypt.peter1997-09-051-0/+5
| |
* | If not building a.out, still build a pic version of libmd. This allowspeter1997-09-051-1/+3
| | | | | | | | | | | | | | | | things like libskey.so to be dynamically self contained. Things like md5(1) where speed is critical should still link with libmd.a, but for things like login, where it's a once-off call if skey is used, it's not worth the hassle.
* | The parameters to logwtmp should be const char'spst1997-09-042-4/+6
| |
OpenPOWER on IntegriCloud