summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Document FTP_LOGIN.des2000-12-221-0/+2
|
* Check the FTP_LOGIN environment variable before falling back ondes2000-12-221-0/+2
| | | | FTP_ANONYMOUS_USER.
* When retrieving the time of day in nanosleep(), store it in thedeischen2000-12-203-12/+36
| | | | | | | | global time of day. This costs us nothing, but is a bit of a hack to work around a process blocking and not having the time updated by an ITIMER_PROF signal. PR: 23679
* Enable check for pending signals after calling a signal handler.deischen2000-12-203-0/+9
| | | | | | | Restoration of a threads signal mask after invocation of a signal handler may allow pending signals to become deliverable. PR: 23647
* Fix mostly harmless typo:nectar2000-12-171-1/+1
| | | | | | | if (data); free(data); Discovered by: emacs cc-mode
* mdoc(7) police: added missing .Os call.ru2000-12-143-0/+3
|
* mdoc(7) police: removed history info from the .Os FreeBSD call.ru2000-12-1460-61/+60
|
* Avoid a segfault (due to an unitialized pointer) when parsing URLs that havedes2000-12-131-0/+2
| | | | no scheme or host part.
* #endif should not have a non-comment token after it.obrien2000-12-131-1/+1
| | | | GCC 2.97 (snapshot) complains about this.
* Do install-time configuration of the i386 boot0 boot manager. Atrnordier2000-12-121-1/+23
| | | | | | | | | present, this is limited to turning on the packet option if any of disk slices begin above cylinder 1023. The effect of this change should therefore be to automatically enable LBA support, as needed, when installing FreeBSD. Something-of-the-kind-requested-by: peter
* mdoc(7) police: Now that .Fx macro is parsed, backoutru2000-12-121-5/+2
| | | | the 1.18 -> 1.20 and fix the .Fx issue the right way.
* Change the proc information returned from the kernel so that itmckusick2000-12-122-74/+160
| | | | | | | | | | | | no longer contains kernel specific data structures, but rather only scalar values and structures that are already part of the kernel/user interface, specifically rusage and rtprio. It no longer contains proc, session, pcred, ucred, procsig, vmspace, pstats, mtx, sigiolst, klist, callout, pasleep, or mdproc. If any of these changed in size, ps, w, fstat, gcore, systat, and top would all stop working. The new structure has over 200 bytes of unassigned space for future values to be added, yet is nearly 100 bytes smaller per entry than the structure that it replaced.
* o Introduce a pile more documentation about capabilities, includingrwatson2000-12-112-12/+426
| | | | | | | | identification and descriptions of most capabilities, current inheritence rules, etc. More to follow. Reviewed by: sheldonh Obtained from: TrustedBSD Project
* mdoc(7) police: use canonical form of .Dd macro.ru2000-12-1116-16/+17
|
* Move telldir position recording type definitions and prototypesdeischen2000-12-116-31/+92
| | | | | | | to "telldir.h" in order to prevent namespace pollution in <dirent.h> (which was including <sys/queue.h>). Add $FreeBSD$ to rewinddir.c and seekdir.c.
* Add `_PATH_DEVZERO'.obrien2000-12-095-7/+14
| | | | Use _PATH_* where where possible.
* strunvis(3) and unvis(3) are the same files.alex2000-12-081-1/+0
|
* There are four types of encoding now, not three. Most of them use thealex2000-12-081-2/+2
| | | | backslash as a special char, but not all.
* When TFTP tries to open a file, it is expecting struct open_fileps2000-12-081-0/+3
| | | | | | | | member f_devdata to be a pointer to a socket number. When currdev is "pxe", that assumption is correct. When currdev is "disk*", that assumption is incorrect. Submitted by: Jim Browne <jbrowne@jbrowne.com>
* Upgrade to groff 1.16.1.ru2000-12-061-8/+1
|
* Somewhere along the line, I misunderstood the whole FTP_PASSIVE_MODE debatedes2000-12-062-4/+4
| | | | | | | and had libfetch selecting passive mode even when FTP_PASSIVE_MODE was not set at all, which is really quite surprising unless you know about it. So change it to the agreed default behaviour of selecting passive mode if FTP_PASSIVE_MODE is set, but not "no".
* Back this out, we apparently have the ipfw(4).ru2000-12-061-1/+1
|
* ipfw(4) -> ipfw(8).ru2000-12-061-1/+1
|
* Cleanup XXXdir functions to eliminate global hash table ofdeischen2000-12-065-53/+34
| | | | | | | | | | | | | | | | telldir positions. This will allow (future) locking on a per-DIR basis (for MT-safety). For now, this change does the following: o Remove the hash table from telldir.c. Recode to use queue macros. o Remove 'const' from 'telldir(const DIR *)'. o Remove 'register' variables as suggested in a recent thread. No response from: -current
* Add appropriate defines to use snprintf/vsnprintf instead ofjedgar2000-12-061-0/+2
| | | | | | sprintf/vsprintf. Approved by: peter
* Change the spelling of `.' to `.' from .OBJDIR since `.' really is whereobrien2000-12-051-1/+1
| | | | generated files land. Also give precedence to generated files.
* Move the ipfw(4) xref to the description of LOG_SECURITY instead ofjhb2000-12-051-1/+1
| | | | | | | LOG_UUCP. PR: docs/23302 Submitted by: cshumway
* Add some missing functions in MLINKS. Link assume_default_colors.3tg2000-12-052-10/+20
| | | | | and use_default_colors.3 to default_colors.3 instead of dft_fgbg.3. The former seems to be newer and/or better maintained.
* Install manpages, including appropriate MLINKS.tg2000-12-056-0/+274
|
* Forgot to remove the old line in the last commit.green2000-12-051-1/+0
|
* - __ivaliduser_sa() was introduced for forthcoming IPv6 support to lpdume2000-12-041-102/+170
| | | | | | | | | | | | | - iruserok_sa() and __ivaliduser_af() were re-organized to use __ivaliduser_sa() - __icheckhost() was re-written to use getaddrinfo() instead of getipnodebyname() - better handling of multiple destination addresses in rcmd() These changes were basically taken from KAME and changed to fit our rcmd.c. Obtained from: KAME
* mdoc(7) police: fix formatting errors in rev 1.27.ru2000-12-041-13/+27
|
* When recording the original arguments, stop short if we encounterjdp2000-12-041-0/+10
| | | | | | | | a NULL argument. Some programs change the contents of the argv array, typically to remove some special arguments. They shorten argv by storing a NULL where an argument pointer used to be. Such programs core dumped if they called setproctitle(), because it would try to apply strlen() to a NULL pointer.
* When recording the original arguments, don't (ab)use "nargc" forjdp2000-12-041-3/+4
| | | | | iterating over the arguments. Doing so wipes out the value which is about to be stored into the ps_strings structure.
* Add warning on file-fragmentation issues related to MAP_NOSYNCdillon2000-12-031-0/+15
|
* Remove last vestiges of thr_sleep and thr_wakeup from libc.jake2000-12-024-4/+4
|
* Fix some error-handling logic so that ferror is called before fclose,gad2000-12-021-7/+21
| | | | | | | | | instead of immediately after the fclose. The previous logic did work on freebsd, but is somewhat risky practice (and causes trouble when porting to other OS's). PR: bin/22965 Reviewed by: Garrett Wollman
* Remove some obsolete comments.des2000-12-011-13/+0
|
* Clean up the whitespace encoding code.des2000-12-011-5/+6
|
* Add SCHEME_HTTPS.des2000-12-011-0/+1
|
* The GCC 2.96 snapshots have slightly different rules for finding includeobrien2000-12-011-1/+1
| | | | | | | files. Mostly -I${.CURDIR} was needed -- especially for YACC generated files as the new cpp does not look in the ultimate source file (ie, the .y file)'s directory as told by the "#line" directive. Some were misspellings of "-I${.CURDIR}" as "-I.".
* remove unneded sys/ucred.h includealfred2000-11-301-1/+0
|
* document O_NOFOLLOW and O_FSYNC flags to openalfred2000-11-291-0/+21
|
* Prefix the register argument of indirect 'jmp's with a * to make gas 2.10.xjhb2000-11-283-3/+3
| | | | happy.
* The parameter that contains valid options is "optstring", not "optarg".mph2000-11-281-1/+1
|
* Add reference to elf(5) in addition to already mentioned a.out(5) and add bothsobomax2000-11-271-0/+4
| | | | elf(5) and a.out(5) into `SEE ALSO' section.
* Fix old-style proxy specs: default to FTP if FTP_PROXY was set; only defaultdes2000-11-271-2/+6
| | | | to HTTP if HTTP_PROXY was used instead.
* Don't try to get the proxy port number from /etc/services.des2000-11-271-4/+0
|
* Note that the `fmt' parameter is a printf()-like string.obrien2000-11-261-1/+4
|
* Constifykris2000-11-262-2/+4
|
OpenPOWER on IntegriCloud