summaryrefslogtreecommitdiffstats
path: root/lib/libc
Commit message (Collapse)AuthorAgeFilesLines
* Merge from Lite2 (whiteout/unionfs)peter1997-03-111-2/+4
|
* Merge from Lite2peter1997-03-111-2/+2
|
* Merge Lite2 changespeter1997-03-115-50/+98
|
* merge from Lite2 - realpath() now shares a lot of code with getcwd()peter1997-03-113-287/+158
| | | | and is now in the same file.
* Merge from Lite2 onto mainline -peter1997-03-1119-278/+186
| | | | | - add undelete() and undelete.2 (requires libc minor bump some time) - man page updates
* This commit was generated by cvs2svn to compensate for changes in r23658,peter1997-03-119-37/+373
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import CSRG 4.4BSD-Lite2 lib/libc onto vendor branchpeter1997-03-1175-662/+1333
| |
* | Import CSRG 4.4BSD-Lite2 includes onto vendor branchpeter1997-03-111-4/+7
| |
* | Check for overflow of FD_SETguido1997-03-101-1/+6
| |
* | Fix brain-o in SunOS passwd.adjunct stuff: !strstr(s, "##") is a) badwpaul1997-03-101-1/+1
| | | | | | | | | | | | style and b) the wrong logic. Should be strstr(s, "##") != NULL. (Note that the passwd.adjunct stuff has not been merged into 2.2 so this bug is not in that branch.)
* | Clarified the behaviour of dup2(fd1,fd2) when fd1==fd2 and when fd1 is invalid.mckay1997-03-091-4/+21
| | | | | | | | Safe for 2.2!
* | The first argument to fts_set was wrong. Part of PR# 2917.mpp1997-03-091-1/+2
| |
* | Pause() is made obsolete by sigsuspend(2), not sigpause(3).mpp1997-03-091-4/+4
| | | | | | | | Part of PR# 2917.
* | Allow comments in group database.wosch1997-03-081-2/+2
| | | | | | | | | | | | | | | | The character `#' introduces a comment. Leading spaces and tabs are ignored: '^[ \t]*#.*\n$' Count an empty line - only spaces, tabs or newline - also as a comment. (to be compatibel with password database comments). '^[ \t]*\n$'
* | Add a missing semi-colon.mpp1997-03-071-1/+1
| | | | | | | | Submitted by: jmg
* | Remove words about lower limit needed (from BUGS section), we haveache1997-03-031-7/+0
| | | | | | | | precise limit now
* | Fixed handling of input failure by the scanf family.bde1997-03-031-3/+11
| | | | | | | | | | | | | | | | | | | | | | - 0 was returned instead of EOF when an input failure occured while skipping white-space after 0 assignments. This fixes PR2606. The diagnosis in PR2606 is wrong. - EOF was returned instead of 0 when an input failure occurred after zero assignments and nonzero suppressed assignments. - EOF was spelled -1. This should be in 2.2.
* | Use .Sq Li \&\e0 rather than NUL to describe the character with no bitsimp1997-03-031-3/+7
| | | | | | | | | | set, as suggested by Garrett Wollman. This is more consistant with how things like strncpy are done, as well as harder to confuse NUL and NULL.
* | Enabled the Lite2 getvfsbyname(). It's actually named new_getvfsbyname()bde1997-03-032-4/+8
| | | | | | | | | | | | | | for now so that we don't lose library compatibility. Applications should define _NEW_VFSCONF and use getvfsbyname() instead of new_getvfsbyname() if they want the new vfsconf interface. Parts of the old interface (enough to load vfs modules, I hope) are still available.
* | Use stricter MAXLOGNAME nowache1997-03-031-1/+1
| |
* | Reflect current MAXLONGNAME value and specify that null includedache1997-03-031-1/+1
| |
* | Don't add/subtract 1 to MAXLOGNAME, it is already NUL-terminatedache1997-03-031-2/+2
| |
* | Change vfc_typenum back to vfc_index in response to bde'smpp1997-03-031-2/+2
| | | | | | | | commit to getvfsent.c rev 1.10.
* | Changed vfc_typenum back to vfc_index. The old vfsconf struct is nowbde1997-03-031-1/+1
| | | | | | | | visible again, and the new vfsconf struct didn't match reality.
* | MAXLOGNAME currently 16, not 12ache1997-03-021-1/+1
| |
* | Pendantic change of null to NUL. Also warn that this function does notimp1997-03-021-3/+9
| | | | | | | | NUL terminate in the case of buffer overflow.
* | This commit was generated by cvs2svn to compensate for changes in r23291,bde1997-03-021-0/+77
|\ \ | |/ | | | | which included commits to RCS files with non-trunk default branches.
| * Attempt to import Lite2's getvfsbyname.c.bde1997-03-021-0/+77
| |
| * pull this in to avoid fixing these twicepeter1996-08-301-5/+6
| |
* | getnetbyaddr now takes an unsigned long as its first argument.mpp1997-02-281-1/+1
| |
* | Oops! I accidently commited a change that wasn't ready for primempp1997-02-281-15/+0
| | | | | | | | time yet. Revert to rev 1.2.
* | The struct vfsconf element vfc_index is now vfs_typenum.mpp1997-02-282-2/+17
| |
* | Correct the xref section - it was incorrectly using .Fn insteadmpp1997-02-281-4/+4
| | | | | | | | of .Xr for the xrefs.
* | Buffer overflow from DNS name information which could cause root accessimp1997-02-261-1/+2
| | | | | | | | | | | | | | when called from lpd. Reviewed by: jkh, pst Submitted by: Oliver Friedrichs <oliver@secnet.com>
* | Revert $FreeBSD$ to $Id$peter1997-02-22314-394/+394
| |
* | Revert $FreeBSD$ to $Id$peter1997-02-223-3/+3
| |
* | Typogrammatical error 'with' -> 'when'.danny1997-02-201-1/+1
| | | | | | | | This could be put into 2.2.
* | Add forgotten man page link fts_set.3 -> fts.3wosch1997-02-161-1/+1
| |
* | Reviewed by: Bruce Evans <bde@freebsd.org>danny1997-02-151-0/+6
| | | | | | | | | | Guard against possible buffer overrun in filename passed. Another candidate for 2.2.
* | Allow commonly-used "insecure" as a valid keyword in /etc/ttys.davidn1997-02-151-0/+2
| | | | | | | | | | This prevents keywords after "insecure" occurs being errnoeously parsed as comments.
* | Moved definitions of PIC macros from SYS.h to DEFS.h so that SYS.hbde1997-02-143-41/+21
| | | | | | | | | | | | | | | | doesn't need to be included in files that have nothing to do with syscalls. Added missing `.text' to START_ENTRY so that ENTRY() works when invoked in the data section.
* | lite2 remame: vfc_index --> vfc_typenumadam1997-02-121-1/+1
| |
* | Update to reflect new Lite2 mount.h and friends.mpp1997-02-101-50/+53
| |
* | Update to reflect new Lite2 mount.h.mpp1997-02-102-6/+16
| |
* | Move _PathLocale to data-only file, so setrunelocale() not pick upache1997-02-092-2/+2
| | | | | | | | | | | | whole setlocale.c module now. Should go into 2.2
* | Fix PR2579: potential security hole in rcmd.cimp1997-02-091-2/+2
| | | | | | | | Submitted by: Julian Assange
* | Do Andrey's homework :) before merging this into 2.2:joerg1997-02-082-1/+6
| | | | | | | | | | . add idempotency #ifdef . avoid sloppy common-style external declaration.
* | Include "setlocale.h" for _PathLocale like other parts already didache1997-02-071-3/+2
| | | | | | | | Should go in 2.2
* | Comment out PATH_LOCALE referenceache1997-02-062-2/+2
| | | | | | | | Should go into 2.2
* | Use symbolic constants instead of hardcoded digitsache1997-02-064-32/+51
| | | | | | | | | | | | | | | | Add range check for setrunelocale since it can be called directly. Remove _startup_setlocale compatibility function Should go into 2.2
OpenPOWER on IntegriCloud