summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* o Introduce man pages for POSIX.1e capability APIrwatson2000-06-0418-0/+1896
| | | | | | | | | - cap.3 describing library interface - cap_*.3 describing specific API calls APIs to follow relatively soon, code to follow later. Obtained from: TrustedBSD Project
* o Remove extra cross reference from acl.3 to acl.3rwatson2000-06-0420-62/+20
| | | | | | | o Remove "BUGS" entries indicating that there's nowhere to store ACLs as we now have extended attributes. Obtained from: TrustedBSD Project
* Make this lib fake - now merged to libcache2000-06-032-4/+5
|
* Megre XPG4 code into libcache2000-06-0310-52/+24
|
* #include <string.h> for memcpy() prototypekris2000-06-031-0/+1
| | | | Obtained from: OpenBSD
* Fix buffer overflow bug in NgSendAsciiMsg().archie2000-06-021-1/+1
|
* document sbsize limit.alfred2000-06-021-0/+1
|
* Replace a `manual(section)' reference with a proper .Xr statement.chris2000-05-311-1/+2
|
* Fix an mdoc-o, and english.hoek2000-05-311-6/+6
|
* /dev/rXXX -> /dev/XXXmsmith2000-05-313-5/+5
| | | | | This should fix sysinstall and other tools that don't expect the 'r' devices to exist anymore (and thus don't create them).
* De-support 'wd'; with it making a dual appearance with 'ad', thingsmsmith2000-05-302-4/+2
| | | | | depending on libdisk to detect a list of actually-there disk devices were providing duplicate entries (eg. sysinstall).
* Update to the version of pam_ssh corresponding to OpenSSH 2.1 (takenkris2000-05-301-19/+23
| | | | | | from the openssh port) Submitted by: Hajimu UMEMOTO <ume@mahoroba.org>
* Fix a misspelling: undefied -> undefinedchris2000-05-272-2/+2
|
* Hackish support for 302 redirect.des2000-05-261-24/+59
|
* Honor FTP_PASSIVE_MODE so caller doesn't need to.des2000-05-261-0/+4
|
* Back out the previous change to the queue(3) interface.jake2000-05-268-72/+72
| | | | | | It was not discussed and should probably not happen. Requested by: msmith and others
* Output newline after debugging messagedes2000-05-251-0/+1
|
* Add (and document) fetchMakeURL()des2000-05-253-3/+51
|
* Dump com_err, it's a stinking crock of shit.des2000-05-257-127/+49
|
* fix stray 'i' from editor.alfred2000-05-251-1/+1
|
* Teach libdisk about 'twe' disks.msmith2000-05-252-1/+3
|
* catch up to the modern ATAPI disk naming conventions and add floppyjkh2000-05-241-1/+1
| | | | | | disks. Submitted by: bde
* We should see the ai_canonname menber of the first addrinfoume2000-05-241-6/+6
| | | | | | structure in the linked list. RFC2553 mentions only first. Reviewed by: shin
* Add missing source files. Sort SRCS.tg2000-05-246-16/+28
| | | | PR: 18631
* fix up the kqueue documentation... comment some things that were leftjmg2000-05-241-0/+21
| | | | | | out that really needed to be here... Reviewed-by: jlemon
* Use the new machine-independent versions of crtbegin and crtendobrien2000-05-242-7/+5
| | | | from the "common" directory.
* Change the way that the queue(3) structures are declared; don't assume thatjake2000-05-238-72/+74
| | | | | | | | the type argument to *_HEAD and *_ENTRY is a struct. Suggested by: phk Reviewed by: phk Approved by: mdodd
* Describe errx/warnx in comparison to errc/warnc/err/warn.ghelmer2000-05-231-12/+33
| | | | | | Use .Fa instead of .Va for function arguments. Reviewed by: sheldonh
* Use the new machine-independent versions of crtbegin and crtendjdp2000-05-233-108/+2
| | | | | | | | from the "common" directory. As a side-effect, this also fixes a bug in the ordering of global constructors and destructors on the Alpha. See revision 1.3 of "../common/crtbegin.c" for details.
* Use $FTP_PASSWORD for FTP password. If $FTP_PASSWORD is notume2000-05-221-1/+11
| | | | found, `yourname@yourhost' is used.
* <blush> I tested the real code changes, but neglected to test theimp2000-05-222-5/+5
| | | | | insertion of $FreeBSD$. I miffed it (pointy hat please). Hopefully no one will notice this short window where -current didn't compile.
* Do not read editrc file from '.'. This can be as unsafe as havingimp2000-05-222-12/+11
| | | | | | | | | | . first in root's path. While I'm here: o Add $FreeBSD$ o Get errno from <errno.h>, but extern int errno. Submitted by: Tim Vanderhoek
* Make comment match code forgotten in last commitimp2000-05-221-1/+1
|
* Add $FreeBSD$ so I can commit:imp2000-05-221-4/+6
| | | | | Remove extern int errno;. Instead include the ANSI <errno.h>. No functional changes, just a higher level of pedantry.
* Implement a new camcontrol function, 'camcontrol format'.ken2000-05-211-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | libcam/Makefile: Add scsi_da.c to libcam for the new scsi_format_unit() function. camcontrol.8: Update the man page for the new format functionality, and take out the examples section describing how to do it with 'camcontrol cmd'. camcontrol.c: New format functionality. Note that unlike the rest of the camcontrol subcommands, this one is interactive by default. Because of the potential destructiveness of the format command, I thought it necessary to get confirmation from the user before spamming a disk. You can disable the interactive behavior, and the status meter with command line arguments. scsi_da.c: Add the new scsi_format_unit() cdb building function and use #ifdef _KERNEL to make this file compile in both the kernel and userland. The format unit function is currently only defined in the non-kernel case, because nothing in the kernel is using it. If that changes, it should be un-ifdefed and compiled in both cases. scsi_da.h: New function declaration, CDB structure and format data structures. Thanks to Nick Hibma for providing some valuable input on these changes.
* Back out NOTE_EXIT status reporting pending discussion.green2000-05-211-4/+0
|
* Fix a memory leak in getent() that occurred when the requested entryhoek2000-05-211-1/+3
| | | | | | could not be found. PR: bin/17084
* Fix a memory leak with lc->lc_cap in login_close().hoek2000-05-211-0/+1
| | | | PR: bin/17084
* IPv6 support.ume2000-05-207-68/+278
|
* Take crtbegin.c and crtend.c from the new machine-independentjdp2000-05-204-135/+4
| | | | "common" sister directory.
* Better handling of some boundary conditions.des2000-05-192-4/+9
| | | | Submitted by: ume
* This is step 1 in an effort to unify the start-up files for thejdp2000-05-196-78/+120
| | | | | | | | | | | | | | | | | various architectures. Now all the work is done in crtbegin.c. It doesn't contain any assembly language code, so it should work fine on all architectures. (I have tested it on the i386 and the alpha.) The old assembly language files crt[in].S are now empty shells that generate no code or data. They should not be removed any time soon, because the various versions of gcc in src and ports expect them to exist. Next I will move crtbegin.c into a new common machine-independent directory, and adjust the i386-elf Makefile to use that version. After that I will adjust the alpha Makefile to use the common version too. Requested by: obrien
* Remove a superfluous `.Pp' occuring directly afterchris2000-05-191-1/+0
| | | | `.Sh IMPLEMENTATION NOTES'.
* Add a note under IMPLEMENTATION NOTES about the behavior of sendfile()chris2000-05-191-0/+27
| | | | in the threaded library.
* List ECONNRESET as a return value. EINVAL was not documented either.peter2000-05-192-0/+4
|
* Put the wait(2) exit status in "data" for NOTE_EXIT kevents.green2000-05-171-0/+4
|
* Fix a memory leak. pthread_set_name_np() allocates space for a name, butjasone2000-05-163-6/+18
| | | | | | was not deallocating space for the previous name, if any. PR: misc/18504
* Fix a memory leak. pthread_set_name_np() allocates space for a name, butjasone2000-05-162-0/+8
| | | | | | _thread_gc() was not deallocating it. PR: misc/18504
* Make HTTP_PROXY work for FTP.ume2000-05-152-13/+45
| | | | | Reported by: Ben Smithurst <ben@scientia.demon.co.uk> Reviewed by: des
* Document struct url.des2000-05-151-0/+32
| | | | Document the default values for fetchStat*().
OpenPOWER on IntegriCloud