summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Implement strcasestr() which many others (f.e. Linux) already have.ache2001-10-103-2/+79
|
* Document the fact that the strnstr(3) function is not portable.mike2001-10-091-0/+5
| | | | Requested by: brian, gad
* Don't mangle vendor ids to put them in __RCSID. Just ifdef all vendormike2001-10-091-1/+6
| | | | | | id cruft. Submitted by: bde
* Add a new libc function, strnstr(3), which allows one to limit themike2001-10-093-11/+122
| | | | | | | | number of characters that are searched. This is especially useful with file operations and non-NUL terminated strings. Silence from: -audit, -hackers MFC after: 5 days
* Port to ia64. Actually, just do like the alpha.dfr2001-10-081-1/+1
|
* Limit maximum poll interval to 60 seconds. This prevents an overflowdeischen2001-10-073-0/+9
| | | | | | | from occurring when converting from a timeval/timespec to a timeout in milliseconds. Submitted by: dwmalone
* Make this work on ia64. I have no idea why it works on alpha - itdfr2001-10-061-1/+7
| | | | shouldn't.
* Fix a load of dependancy violations.dfr2001-10-052-7/+7
|
* Add compatibility functions for the AF_LOCAL RPC transport stuffwpaul2001-10-043-0/+235
| | | | | that used to live in RPC 4.0. This is needed for yppasswd and rpc.yppasswdd to work correctly. Patch supplied by Martin Blapp.
* Hopefully improve control message passing over Unix domain sockets.dwmalone2001-10-042-14/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1) Allow the sending of more than one control message at a time over a unix domain socket. This should cover the PR 29499. 2) This requires that unp_{ex,in}ternalize and unp_scan understand mbufs with more than one control message at a time. 3) Internalize and externalize used to work on the mbuf in-place. This made life quite complicated and the code for sizeof(int) < sizeof(file *) could end up doing the wrong thing. The patch always create a new mbuf/cluster now. This resulted in the change of the prototype for the domain externalise function. 4) You can now send SCM_TIMESTAMP messages. 5) Always use CMSG_DATA(cm) to determine the start where the data in unp_{ex,in}ternalize. It was using ((struct cmsghdr *)cm + 1) in some places, which gives the wrong alignment on the alpha. (NetBSD made this fix some time ago). This results in an ABI change for discriptor passing and creds passing on the alpha. (Probably on the IA64 and Spare ports too). 6) Fix userland programs to use CMSG_* macros too. 7) Be more careful about freeing mbufs containing (file *)s. This is made possible by the prototype change of externalise. PR: 29499 MFC after: 6 weeks
* Include <string.h> to prototype strcpy(3). While I'm here, make usemike2001-10-041-3/+4
| | | | | | of the new RCSID macros. MFC after: 3 days
* Fixed various type errors in synopsis.bde2001-10-031-7/+7
|
* Fixed bitrot in synopsis. The TI-RPC changes gave mounds of it, mainlybde2001-10-0310-31/+33
| | | | | inconsistently weird const poisoning in the man pages relative to the headers.
* Fixed spelling of rpow in rpow's prototype.bde2001-10-031-1/+1
|
* Fixed missing `const' in synopsis.bde2001-10-031-1/+1
|
* Fixed return type in synopsis.bde2001-10-031-1/+1
|
* Fixed bitrot in synopsis. The change of the color type from byte to u_longbde2001-10-031-8/+8
| | | | had not reached here.
* Avoid getting stuck in system(3) when the internal call to wait4()alfred2001-10-031-2/+3
| | | | | | | | | | is interrupted by saving the pid. The old code would assign the return value to pid which would trash it, to fix the problem save a copy of the pid to be used as the paramter to wait4(). Submitted by: Toshihiko ARAI <toshi@jp.FreeBSD.org>
* Don't install manpage links for the nonexistent functions exp2(),bde2001-10-031-2/+2
| | | | exp2f(), log2() and log2f().
* Removed .Nm's for the nonexistent functions exp2() and exp2f().bde2001-10-031-2/+0
|
* Made this header self-sufficient.bde2001-10-031-6/+9
| | | | Fully parenthesized a macro definition.
* Fixed syntax errors in synopsis. The restrict keyword doesn't exist yet.bde2001-10-031-5/+5
| | | | | | The corresponding bugs in <wchar.h> have no effect because the function prototypes there don't have args so the __restrict "keyword" is misinterpreted as an arg.
* Fixed wrong arg type in synopsis.bde2001-10-031-1/+1
|
* Fixed bitrot in synopsis. The change of the return type ofbde2001-10-031-1/+1
| | | | | Set_Boot_Blocks() from void to int had not reached here. Callers still don't check the new return value.
* Fixed misspelled arg type in synopsis.bde2001-10-031-1/+1
|
* Fixed missing include in synopsis.bde2001-10-031-0/+1
|
* - cope with sa_len < sizeof(struct sockaddr).ume2001-10-021-35/+44
| | | | | | | | From: Patrik Lindergren <patrik@datacom.nu> - delint (pointer cast issue). from netbsd-current Obtained from: KAME MFC after: 1 week
* Clean this up after the NetBSD syncing.obrien2001-10-011-25/+19
|
* Fix ID's after a total boch CVS merge due to multiple people makingobrien2001-10-0113-26/+0
| | | | | | | | commits to these files. As I sing to CVS: Have I told you lately that I hate your guts? Have I told you all SCM's are above you? You fill my heart with pain, take away all my merging joy, grow my troubles that's what you do."
* Our histedit.h lives in src/include.obrien2001-10-011-1/+0
|
* mdoc(7) police: Use the new .In macro for #include statements.ru2001-10-01627-903/+903
|
* Re-applied some of rev. 1.11 and 1.13 fixes that were lost in the last commit.ru2001-10-011-11/+17
| | | | Fixed some more.
* mdoc(7) police: don't split author names in the AUTHORS section.ru2001-10-011-0/+1
|
* mdoc(7) police: markup nits.ru2001-10-011-9/+13
|
* mdoc(7) police: s/atof/atoi/ru2001-10-011-1/+1
|
* Add the 4.4-FreeBSD libperl.so.3 as the version in -CURRENT is .so.4.obrien2001-10-012-0/+5825
|
* Add the 4.4-FreeBSD libedit.so after the sh version bump in -CURRENT dueobrien2001-10-012-0/+725
| | | | to the API changes from merging with the NetBSD libedit.
* What was I thinking???obrien2001-10-011-2/+1
| | | | | | <JEDI MIND TRICK> That was not the commit you wanted to get. </JEDI MIND TRICK>
* What was I thinking....obrien2001-10-011-274/+0
| | | | | | <JEDI MIND TRICK> This is not the commit you wanted to get. </JEDI MIND TRICK>
* Add the 4.4-FreeBSD libwrap after the sh version bump in -CURRENT due toobrien2001-10-012-1/+276
| | | | the API changes from merging with the NetBSD libwrap.
* + Sync with NetBSD, bringing in feature enhancements.obrien2001-10-0137-8660/+9754
| | | | | | | + Convert to ANSI-C function definitions + style(9) Submitted by: kris
* Add huff __FBSDID()s puff to whew! libzdillon2001-09-3018-13/+44
|
* Add __FBSDID()s to libydillon2001-09-302-0/+6
|
* Add __FBSDID()s to libutildillon2001-09-3021-54/+62
|
* Add __FBSDID()s to libusbdillon2001-09-308-22/+24
|
* Add __FBSDID()s to libtelnetdillon2001-09-303-9/+9
|
* Add __FBSDID()s to libtacplusdillon2001-09-301-2/+3
|
* Add __FBSDID()s to libstanddillon2001-09-3053-49/+161
|
* Add __FBSDID()s to librpcsvcdillon2001-09-307-16/+25
|
* Add __FBSDID()s to libradiusdillon2001-09-301-2/+3
|
OpenPOWER on IntegriCloud