summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* write should return the number of bytes written, not 0 on success.alfred2001-11-301-1/+1
| | | | | Submitted by: Jonathan Mini <mini@haikugeek.com> PR: kern/32350
* Clarify isblank rangeache2001-11-301-0/+14
|
* Clarify valid isspace() rangeache2001-11-301-8/+10
|
* Fix pam_ssh by adding an IPv4or6 (evidently, this was broken by my lastgreen2001-11-291-0/+8
| | | | | OpenSSH import) declaration and strdup(3)ing a value which is later free(3)d, rather than letting the system try to free it invalidly.
* Clarify that is[x]digit() class is the same in any localeache2001-11-292-17/+18
|
* Duh. Back out most of my previous commit. It was mostly covered in thecjc2001-11-291-9/+1
| | | | | | | | | STANDARDS section of the page. Add one remark there about inet_pton(3) only understanding decimal values (in contrast to inet_aton(3) and friends who are happy with 0ac.020.25 for 172.16.0.25). Caught by: ru MFC after: 2 days
* Bump p1003.1-90 to p1003.1-96.green2001-11-291-1/+1
|
* rename() can't guarantee "to" always exists if it didn't exist in the firstgshapiro2001-11-291-1/+3
| | | | | | | | place -- for example, rename("existing", "newfile"); on a read-only file system. Reviewed by: green MFC after: 3 days
* Back out national digits support, POSIX explicetely disallows it:ache2001-11-298-83/+85
| | | | | | | | | | | The definition of character class digit requires that only ten characters -the ones defining digits- can be specified; alternate digits (for example, Hindi or Kanji) cannot be specified here. However, the encoding may vary if an implementation supports more than one encoding. The definition of character class xdigit requires that the characters included in character class digit are included here also and allows for different symbols for the hexadecimal digits 10 through 15.
* After the long explanaition of how the inet_* functions interpretcjc2001-11-291-0/+8
| | | | | | | Internet addresses, point out that inet_pton(3) only understands dotted quads with decimal values. MFC after: 2 days
* Do not write warning messages on stderr - a caller is expected to checktobez2001-11-282-10/+8
| | | | | | | | | | | | | the return code and errno instead. Those warnings did not do any good for daemonized users of initgroups(3), and confused cvs clients that communicated with non-root cvs pserver. The committed fix differs from the one suggested in the PR, and was submitted by ru. PR: 15421 Approved by: markm Discussed on: -stable, -current at various times
* Mdoc police.des2001-11-281-32/+37
| | | | Submitted by: ru
* mdoc(7) police: fix one pam_unix(8) left-over, sort xrefs.ru2001-11-281-4/+4
|
* Don't ever assume that isdigit() is always subset of isxdigit()ache2001-11-287-7/+7
|
* Fix typoache2001-11-281-1/+1
|
* Use stricter tests to disallow national digits > 9ache2001-11-281-14/+14
| | | | Optimize national digits code a bit
* Allow national (non-ASCII) digitsache2001-11-281-55/+53
|
* Allow national (non-ASCII) digitsache2001-11-281-23/+23
|
* Implement strtoimax() and strtoumax()fenner2001-11-285-42/+337
|
* Also mention "long long" in synopsis.fenner2001-11-281-1/+1
|
* Return a more meaningful errno when the length of the interpreterjwd2001-11-281-0/+3
| | | | | | | | | | | | | exceeds MAXSHELLCMDLEN to avoid secondary /bin/sh execution. Update execve man page to reflect change. Increase MAXSHELLCMDLEN to a slightly more meaningful value. PR: kern/32106 Submitted by: b@etek.chalmers.se Reviewed by: bsd MFC after: 2 weeks
* Base 36 is allowed.fenner2001-11-284-4/+4
|
* Put back base > 35 check. If someone dislike it, plese discuss it withache2001-11-284-4/+4
| | | | standards group first.
* Add atoll(3) to conform POSIX and C99ache2001-11-283-2/+69
|
* Understand national (non-ASCII) digits nowache2001-11-286-56/+42
| | | | | Allow bases >=36 again Misc cleanup
* Use 'mov' instead of 'lea' for setting the syscall number in %eax as thatjhb2001-11-2713-21/+21
| | | | | | is clearer about what we are actually doing. Requested by: bde
* Add a pam_set_item(3) man page with an MLINK to pam_get_item(3).des2001-11-272-0/+153
| | | | | | PR: docs/32294 Sponsored by: DARPA, NAI Labs MFC after: 3 days
* When servicing an internal FTP server, punch ipfirewall(4) holesru2001-11-271-5/+2
| | | | | | | | | for passive mode data connections (PASV/EPSV -> 227/229). Well, the actual punching happens a bit later, when the aliasing link becomes fully specified. Prodded by: Danny Carroll <dannycarroll@hotmail.com> MFC after: 1 week
* Must link strerror manpage to strerror_r.wes2001-11-271-0/+1
| | | | | | Thanks for the review, Mike. Submitted by: Mike Barcroft <mike@FreeBSD.org>
* Add strerror_r function per Posix prototype.wes2001-11-272-23/+107
| | | | | Reviewed by: Mike Barcroft <mike@FreeBSD.org> MFC after: 2 weeks
* Create a pam_ssh(8) man page, based on a repo-copy of pam_unix(8).des2001-11-271-85/+55
| | | | | | License modified with original author's permission. Sponsored by: DARPA, NAI Labs
* Document the local_pass and nis_pass options, add a few xrefs, and reorderdes2001-11-271-5/+29
| | | | | | the SEE ALSO section. License modified with original author's permission. Sponsored by: DARPA, NAI Labs
* Spelling police: sucessful -> successful.dd2001-11-241-1/+1
|
* s/processes/files/ inherited from kvm_getprocs(3).ru2001-11-241-1/+1
| | | | | PR: docs/32252 Submitted by: tobez
* Be more explicit about the fact that realloc() might return akeramida2001-11-241-0/+4
| | | | | | | different pointer than the one passed to it. PR: docs/31925 Submitted by: Andrew <andrew@ugh.net.au>
* mdoc(7) police: markup cleanup.ru2001-11-221-15/+26
|
* mdoc(7) police: add missing comma.ru2001-11-221-1/+1
|
* fix compilation (include -> #include)fjoe2001-11-211-1/+1
|
* mdoc(7) police: fixed typos and minor markup nits.ru2001-11-214-17/+21
|
* mdoc(7) police: markup nit in the actual rev. 1.13 changes.ru2001-11-211-1/+1
|
* mdoc(7) police: restore all FreeBSD fixes to this file that gotru2001-11-211-16/+14
| | | | clobbered by previous commit.
* mdoc(7) police: general cleanup.ru2001-11-211-40/+55
|
* Should also include namespace.hgreen2001-11-211-1/+3
| | | | Submitted by: ru
* Change certain syscalls from x to _x.green2001-11-211-7/+7
| | | | Prodded by: bde
* Grammar nit.ru2001-11-211-1/+1
|
* mdoc(7) police: fixed bugs from rev. 1.15.ru2001-11-201-14/+14
|
* Introduce readpassphrase(3), a superset of getpass(3). Thisgreen2001-11-205-101/+256
| | | | | | comes originally from Todd Miller. Obtained from: OpenBSD
* mdoc(7) police: minor markup and spelling fixes.ru2001-11-201-4/+7
|
* mdoc(7) police: sort xrefs.ru2001-11-201-2/+2
|
* mdoc(7) police: consistently use the .Ux macro.ru2001-11-201-4/+4
|
OpenPOWER on IntegriCloud