summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* 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
|
* sprintf -> snprintfkris2000-11-261-1/+1
|
* Make it possible to override the function which writes messages tophk2000-11-262-18/+32
| | | | | | | stderr in case of warnings and errors. Rename malloc_options to have a leading underscore, I belive I have been told that is more correct namespace wise.
* sprintf -> snprintfkris2000-11-261-1/+1
|
* Fix a mangled $Id stringpeter2000-11-251-1/+1
|
* In env_destroy(), it is a bad idea to env_swap(self, 0) to switchgreen2000-11-251-0/+2
| | | | | | | | | | back to the original environ unconditionally. The setting of the variable to save the previous environ is conditional; it happens when ENV.e_committed is set. Therefore, don't try to swap the env back unless the previous env has been initialized. PR: bin/22670 Submitted by: Takanori Saneto <sanewo@ba2.so-net.ne.jp>
* Correct an arguement to ssh_add_identity, this matches what is currentlybillf2000-11-251-1/+1
| | | | | | | | | in ports/security/openssh/files/pam_ssh.c PR: 22164 Submitted by: Takanori Saneto <sanewo@ba2.so-net.ne.jp> Reviewed by: green Approved by: green
* Remove the only hard sentence break in the file.sheldonh2000-11-241-4/+5
|
* Eliminate groff(1) warnings.ru2000-11-247-49/+77
|
* mdoc(7) police: Er macro usage cleanup.ru2000-11-2253-87/+124
|
* Don't go haywire if the server closes the connection in the middle of ades2000-11-221-1/+1
| | | | multiline response (proper fix this time).
* Revert previous commit, it was somewhat hasty.des2000-11-221-5/+1
|
* Don't go haywire if the server closes the connection during a multilinedes2000-11-221-1/+5
| | | | response.
* logru2000-11-2210-6/+17
|
* mdoc(7) police: use the new feature of the An macro.ru2000-11-221-24/+14
|
* Fix a logic reversal: the RFFDG flag must be unset in order to sharejlemon2000-11-211-3/+6
| | | | | | a file descriptor table. (Thanks to Alan Cox) Clarify the fact that the changelist and eventlist can be shared.
* Clarify the time parameter of the kevent() system call.asmodai2000-11-211-1/+1
| | | | | | Inspired by PR: 21708 Submitted by: Ronald F. Guilmette <rfg@monkeys.com> Reviewed by: jlemon
* Remove text saying "this is available from the compatibility library,ben2000-11-2111-12/+24
| | | | | | | | | libcompat" in favour of a .Sh LIBRARY section using the .Lb macro. Also add .Bf -symbolic around the text saying "this is obsolete" in re_comp.3. PR: 22675 Submitted by: Mike Meyer <mwm@mired.org> Reviewed by: sheldonh
* Fix hard sentence break introduced in rev 1.7.sheldonh2000-11-201-1/+2
|
* Add a period missing from rev 1.13.sheldonh2000-11-201-1/+1
|
OpenPOWER on IntegriCloud