summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Verbosely report errors to the user (overridable), and make suremarkm2001-08-101-3/+15
| | | | that the correct failure mode is reported.
* mdoc(7) police: join split punctuation to macro calls.ru2001-08-1011-20/+21
|
* Include string.h for the strlen() prototype to quiet a warning.jhb2001-08-101-0/+1
|
* mdoc(7) police: fixed the "new sentence" bogons.ru2001-08-103-3/+3
|
* Fix broken logic so that this actually works for the superuser.markm2001-08-101-5/+21
| | | | | Verbosely log (properly). Verbosely report errors to the user.
* Rework this to prevent a nasty problem involving different modules'markm2001-08-101-42/+34
| | | | option interacting with each other.
* Declare the new user-error reporting macro.markm2001-08-102-6/+18
| | | | | This is a macro to allow use of the __FILE__ and __FUNCTION__ macros.
* Add a routine for providing feedback via the conversation mechanismmarkm2001-08-101-24/+58
| | | | (usually to stderr) for user-reportable errors.
* mdoc(7) police: protect trailing full stops of abbreviationsru2001-08-1011-11/+11
| | | | with a trailing zero-width space: `e.g.\&'.
* Fixed style bugs (dot `.' at the end of error and warning messages).ru2001-08-101-22/+22
| | | | Noticed by: bde
* Markup nits: use diagnostic type lists for error and warning messages.ru2001-08-101-21/+17
| | | | | | | | Backout previous revision. We should not expand plain text xrefs if they appear in the literal text, e.g. in the error or warning message of the library function. (Submitted by: bde) Moved "out of memory" from warning to errors section.
* mdoc(7) police: add xref to intro(2).ru2001-08-101-0/+1
|
* o Remove some misleading and incomplete information about searchmike2001-08-091-11/+8
| | | | | | | | permissions. o Add a reference to intro(2) where it is properly documented. Reviewed by: bde MFC after: 3 days
* o Various mdoc fixes.mike2001-08-091-10/+50
| | | | | | | | | | o Replace strncpy examples with less confusing ones from OpenBSD. These examples give more detail and also suggest using strlcpy(3). Reviewed by: des, ru, sheldonh Obtained from: OpenBSD MFC after: 3 days
* Fix xrefs.sobomax2001-08-091-1/+1
| | | | | | | | times.3: gettimeofday(3) --> gettimeofday(2) rc.conf.5: isndn(8) --> isdnd(8) idsnd(8) --> isdnd(8) MFC after: 2 weeks
* Use the ``.Rv -std'' mdoc(7) macro in appropriate cases.yar2001-08-0966-291/+66
| | | | Reviewed by: ru
* Tiny markup fix: `to' isn't a variableyar2001-08-091-1/+2
|
* A minor markup fix:yar2001-08-091-2/+3
| | | | | | - `to' isn't a variable - don't omit the first `E' in `ERANGE', even though .Er is able to take care of it
* Fix markup and a couple of thinkos.dd2001-08-091-13/+13
| | | | Submitted by: ru
* typo: patched->matchedmikeh2001-08-091-1/+1
|
* mdoc(7) police: expand plain text xrefs.ru2001-08-0813-13/+33
|
* Urge the reader to start using getaddrinfo(3) and getnameinfo(3)ru2001-08-081-0/+14
| | | | | | | protocol-independant functions that don't use static memory area. Suggested by: nik Liked by: ume, brian
* mdoc(7) police: remove whitespace at EOL.ru2001-08-081-1/+1
|
* mdoc(7) police: markup nits.ru2001-08-081-16/+11
|
* Update ptrace(2) re: PT_READ_U and PT_WRITE_Upeter2001-08-081-45/+0
|
* mdoc(7) police:ru2001-08-0723-116/+83
| | | | | | | Avoid using parenthesis enclosure macros (.Pq and .Po/.Pc) with plain text. Not only this slows down the mdoc(7) processing significantly, but it also has an undesired (in this case) effect of disabling hyphenation within the entire enclosed block.
* More spelling fixes.ru2001-08-071-3/+3
|
* mdoc(7) police: sort xrefs.ru2001-08-071-1/+1
|
* mdoc(7) police: markup nits.ru2001-08-071-1/+2
|
* printed current sequence number of the SA. accordingly, changedume2001-08-061-7/+9
| | | | | | | | into sadb_x_sa2_sequence from sadb_x_sa2_reserved3 in the sadb_x_sa2 structure. Also the output of setkey is changed. sequence number of the sadb is replaced to the end of the output. Obtained from: KAME
* varargs -> stdargdd2001-08-051-2/+2
|
* Fix style/consistency in Makefile and repair static module building.markm2001-08-042-5/+4
| | | | Submitted by: bde(partially)
* Don't clobber CFLAGSmarkm2001-08-041-1/+1
| | | | Submitted by: bde
* Add some features to libdevstat, and overhaul the interface a bit:tmm2001-08-045-195/+1220
| | | | | | | | | | | | | | | | | | | | | 1.) prefix all functions in the library with devstat_ (compatability functions are available for all functions that were chaned in an incompatible way, but are deprecated). 2.) Add a pointer to a kvm_t as the first argument to functions that used to get their information via sysctl; they behave the same as before when NULL is passed as this argument, otherwise, the information is obtained via libkvm using the supplied handle. 3.) Add a new function, devstat_compute_statistics(), that is intended to replace the old compute_stats() function. It offers more statistics data, and has a more flexible interface. libdevstat does now require libkvm; a library depedency is added, so that libkvm only needs to be explicitely specified for statically linked programs. The library major version number is bumped. Submitted by: Sergey A. Osokin <osa@freebsd.org.ru>, ken (3) Reviewed by: ken
* Fix the bug where this modulke was not checking the priamry GID, onlymarkm2001-08-041-24/+11
| | | | | | | the GIDS in /etc/group or NIS's group map. Tested by: sheldonh PR: 29349
* Don't clobber the default for CFLAGS.bde2001-08-031-1/+2
|
* In getclnthandle(), if the address is found in the cache we neediedowse2001-08-021-2/+5
| | | | | | | | | | to strdup() the address string before returning it via *targaddr because the caller will free the string. Change the comment at the top of getclnthandle() to clarify that the caller is responsible for freeing *targaddr. Noticed by: sobomax
* With the S/KEY removal, this is no longer buildable or necessary.markm2001-08-022-102/+0
|
* Don't try to make pam_ssh module if NO_OPENSSH is set.markm2001-08-021-1/+1
|
* Add opieaccess(5) functionality under the INSECURE_OPIE .ifdef.markm2001-08-021-1/+2
| | | | Asked for by: ache
* Fix a cryptoless world by disconnecting libmp from the build when there is nosobomax2001-08-021-1/+5
| | | | | | | | | | | crypto bits installed and/or NOCRYPTO/NO_OPENSSL is defined. This unfortunately meants that usr.bin/chkey, usr.bin/newkey and usr.sbin/keyserv have also to be disconnected. IMO it is merely a workaround, the proper solution is to move libmp to src/crypto where it belongs and use libgmp for the cryptoless builds instead. Missed by: dd
* Repair the get/set UID() stuff so this works in both su(1) and login(1)markm2001-08-021-3/+3
| | | | modes.
* mdoc(7) police: remove hard sentence breaks.dd2001-08-011-4/+4
|
* MFS: in HISTORY section, fix release number of first appearancesheldonh2001-08-014-4/+4
|
* Fix broken Fn calls; Fn doesn't take a manual page section as ansheldonh2001-08-011-5/+5
| | | | | | argument. Terminate the last sentence with a period.
* Update our bpf.h with tcpdump.org's new DLT_ types.fenner2001-07-311-1/+1
| | | | Use our bpf.h instead of tcpdump.org's to build libpcap.
* Only pull in the MD files if they exist. This allows for progressivemp2001-07-315-0/+10
| | | | implementation and compilation when bringing up a new architecture.
* Fix compilation errors by adding forward declarations and fix typo.mp2001-07-311-3/+7
|
* Make include file consistent with the rest of libstand.mp2001-07-311-1/+2
|
* Mention the sa_handler and sa_sigaction #defines in the synopsis.brian2001-07-311-3/+7
| | | | | | Mark sa_sigaction consistently. MFC after: 1 week
OpenPOWER on IntegriCloud