Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Use the .Tn macro for generic FreeBSD references. Other minor cleanup. | mpp | 1997-03-21 | 6 | -18/+31 |
| | |||||
* | Mdoc cleanup. | mpp | 1997-03-21 | 3 | -43/+91 |
| | |||||
* | Document SCM_CREDS changes. | wpaul | 1997-03-21 | 1 | -0/+28 |
| | |||||
* | Add backward compatibility so that static executables built on | jdp | 1997-03-20 | 1 | -10/+23 |
| | | | | | | | | modern FreeBSD systems will syslog properly on older systems that still name the logging socket "/dev/log". This includes pre-2.2 versions of FreeBSD as well as BSD/OS systems. If the connect to "/var/run/log" fails, the function now tries to connect to "/dev/log" as a fallback. | ||||
* | Fixed missing #include of <sys/types.h> and wrong arg types in synopsis. | bde | 1997-03-19 | 1 | -5/+6 |
| | | | | Reviewed by: wollman | ||||
* | FIxed arg types (mostly missing consts) in synopsis. | bde | 1997-03-19 | 1 | -2/+2 |
| | |||||
* | FIxed arg types (mostly missing consts) in synopsis. | bde | 1997-03-19 | 5 | -8/+8 |
| | |||||
* | Added missing #include of <stdarg.h> to synopsis. Moved prototypes for | bde | 1997-03-19 | 1 | -9/+10 |
| | | | | | `v' functions after this #include (same organisation as in printf.3 for printf/vprintf). | ||||
* | Fixed missing function types in synopsis. | bde | 1997-03-19 | 5 | -0/+7 |
| | |||||
* | Fixed synopsis (put all of the function (return) type info in .Ft and | bde | 1997-03-19 | 2 | -3/+3 |
| | | | | none in .Fn). | ||||
* | Removed unnecessary quoting of function names in synopsis to simplify | bde | 1997-03-18 | 6 | -13/+13 |
| | | | | automated checking of synopses. | ||||
* | Check for overflow in size argument. | phk | 1997-03-18 | 1 | -2/+4 |
| | | | | | Tested by: Joel Maslak <j@pobox.com> Closes: PR kern/2964 | ||||
* | Fix arg types to match Lite2 | ache | 1997-03-17 | 1 | -2/+2 |
| | |||||
* | Updated prototype for mount() to match Lite2 reality for the 1st arg | bde | 1997-03-13 | 1 | -1/+1 |
| | | | | and Lite1 or earlier reality for the 4th arg. | ||||
* | Part 2 of a failed commit (cvs broke). Original message: | peter | 1997-03-13 | 2 | -0/+283 |
| | | | | | | | | | | | | | | | | Back out a dubious Lite2 change to "optimise" getcwd() to look at $PWD because it's potentially dangerous (think: symlink races). Move realpath() back to it's original location, and remove getcwd_physical() by renaming it back to getcwd() and zapping the original getcwd wrapper. Noticed by: bde The following commits already happened but the log message got lost: Modified Files: gen/Makefile.inc gen/getcwd.c stdlib/Makefile.inc Removed Files: gen/realpath.3 | ||||
* | Back out a dubious Lite2 change to "optimise" getcwd() to look at $PWD | peter | 1997-03-13 | 4 | -282/+4 |
| | | | | | | | | because it's potentially dangerous (think: symlink races). Move realpath() back to it's original location, and remove getcwd_physical() by renaming it back to getcwd() and zapping the original getcwd wrapper. Noticed by: bde | ||||
* | Make this man page really match the current <sys/signal.h> again and | bde | 1997-03-12 | 1 | -2/+2 |
| | | | | | the 2.x <sys/signal.h> for the first time :-). The type of ss_sp was lexically different. | ||||
* | Make this man page match the current <sys/signal.h> again :-). | mpp | 1997-03-12 | 1 | -3/+4 |
| | | | | | | Bruce says that since NetBSD, OpenBSD and Linux currently use ss_sp, we won't be changing it to the lite2 ss_base. The type may change at some later date. | ||||
* | Update the structure to match how things are going to appear after | mpp | 1997-03-12 | 1 | -3/+3 |
| | | | | bde commits some changes later tonight. | ||||
* | More cleanup - I didn't realize that this was a new man page | mpp | 1997-03-12 | 1 | -2/+3 |
| | | | | and need extra attention :-) | ||||
* | Restored a .Fa line that was lost in the Lite2 merge. | bde | 1997-03-12 | 1 | -0/+1 |
| | |||||
* | Mdoc cleanup. | mpp | 1997-03-12 | 1 | -1/+0 |
| | |||||
* | Fixed merging error. Lite2 fixed premature failure and didn't | bde | 1997-03-12 | 1 | -2/+4 |
| | | | | | | | | touch duplicate group suppression, but the merge blew away our duplicate group suppression. The merge also blew away the -Wall cleanup in rev.1.5, but that was misformatted, so I didn't restore it. | ||||
* | Cleanup some of the Lite2 merge. Most of it is mdoc cleanup, | mpp | 1997-03-12 | 3 | -15/+10 |
| | | | | | | | | but in one case the Lite2 changes were flat out wrong and caused the man page to disagree with a header file. There are still some *roff macro calls that were added that I have yet to figure out what to do with in some of the man pages. | ||||
* | Fixed errors in the Lite2 merge. Some style changes were mismerged. | bde | 1997-03-12 | 1 | -27/+28 |
| | | | | | | | My changes to preserve errno across free() and close() and to report fstat() errors properly were blown away. Updated the FreeBSD changes to match the Lite2 style fixes. | ||||
* | Fix problem with FD_SET* overflow reporting.. Perror() didn't have enough | peter | 1997-03-12 | 1 | -2/+6 |
| | | | | | | | args, and errno hasn't actually been set so it probably doesn't make sense to report it via strerror(). Pointed out by: bde | ||||
* | _res_close() -> res_close() | peter | 1997-03-12 | 1 | -2/+2 |
| | | | | Pointed out by: bde | ||||
* | Document that popen() uses a bidirectional pipe (in FreeBSD) and not a | bde | 1997-03-11 | 1 | -7/+5 |
| | | | | socket pair (as in Lite2). | ||||
* | Fixed cleaning up after malloc failure, which was broken by Lite2. | bde | 1997-03-11 | 1 | -3/+5 |
| | | | | | | We don't use socketpair(), so don't #include <sys/socket.h>. Restored some gcc-quieting parentheses that were lost in the Lite2 merge. | ||||
* | Install the Lite2 getvfsbyname.3. The old getvfsbyname() interface is | bde | 1997-03-11 | 1 | -4/+4 |
| | | | | still available and described in getvfsent.3. | ||||
* | Fixed #include's in synopsis. | bde | 1997-03-11 | 1 | -2/+1 |
| | |||||
* | Merge from Lite2: | peter | 1997-03-11 | 9 | -92/+312 |
| | | | | | filesystem include updates, duplicate group suppression, cleanups, filesystem whiteout support (unionfs), bidir popen(). | ||||
* | Merge from Lite2: man page updates | peter | 1997-03-11 | 6 | -18/+40 |
| | |||||
* | Merge from Lite2 (YAMFL2? :-) | peter | 1997-03-11 | 1 | -17/+29 |
| | | | | | | Document that popen() can now create bidirectional pipes and handles. Note that this needs to be updated since we have a native bidirectional pipe and don't use socketpair() here. | ||||
* | Merge from Lite2 (+realpath.3) | peter | 1997-03-11 | 1 | -3/+4 |
| | |||||
* | Merge from Lite2 (whiteout/unionfs) | peter | 1997-03-11 | 1 | -2/+4 |
| | |||||
* | Merge from Lite2 | peter | 1997-03-11 | 1 | -2/+2 |
| | |||||
* | Merge Lite2 changes | peter | 1997-03-11 | 5 | -50/+98 |
| | |||||
* | merge from Lite2 - realpath() now shares a lot of code with getcwd() | peter | 1997-03-11 | 3 | -287/+158 |
| | | | | and is now in the same file. | ||||
* | Merge from Lite2 onto mainline - | peter | 1997-03-11 | 19 | -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, | peter | 1997-03-11 | 9 | -37/+373 |
|\ | | | | | | | which included commits to RCS files with non-trunk default branches. | ||||
| * | Import CSRG 4.4BSD-Lite2 lib/libc onto vendor branch | peter | 1997-03-11 | 75 | -662/+1333 |
| | | |||||
* | | Import CSRG 4.4BSD-Lite2 includes onto vendor branch | peter | 1997-03-11 | 1 | -4/+7 |
| | | |||||
* | | Check for overflow of FD_SET | guido | 1997-03-10 | 1 | -1/+6 |
| | | |||||
* | | Fix brain-o in SunOS passwd.adjunct stuff: !strstr(s, "##") is a) bad | wpaul | 1997-03-10 | 1 | -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. | mckay | 1997-03-09 | 1 | -4/+21 |
| | | | | | | | | Safe for 2.2! | ||||
* | | The first argument to fts_set was wrong. Part of PR# 2917. | mpp | 1997-03-09 | 1 | -1/+2 |
| | | |||||
* | | Pause() is made obsolete by sigsuspend(2), not sigpause(3). | mpp | 1997-03-09 | 1 | -4/+4 |
| | | | | | | | | Part of PR# 2917. | ||||
* | | Allow comments in group database. | wosch | 1997-03-08 | 1 | -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. | mpp | 1997-03-07 | 1 | -1/+1 |
| | | | | | | | | Submitted by: jmg |