summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2000-11-21Sync usage() output with man page; mpech@prosoft.org.lvAaron Campbell
2000-11-21Sync usage() output and man page; mpech@prosoft.org.lvAaron Campbell
2000-11-21Oops... alphabetize.Aaron Campbell
2000-11-21Sync usage() output with man page; mpech@prosoft.org.lvAaron Campbell
2000-11-21Sync usage() output with man page; mpech@prosoft.org.lvAaron Campbell
2000-11-21Use __progname in usage() since this may be invoked as "sum" asAaron Campbell
well; mpech@prosoft.org.lv
2000-11-21bye bye MULOG. code that is easy to read, is code that is easy to auditTheo de Raadt
2000-11-21sigjmp & statics begoneTheo de Raadt
2000-11-21errno saving inside really crummy signal handlersTheo de Raadt
2000-11-21CAST-128 has a maximum of 128bit keys, not 256.Angelos D. Keromytis
2000-11-21Fix an int * that should be a size_t * when calling sysctl(3).Todd C. Miller
2000-11-21Fix.Angelos D. Keromytis
2000-11-21TAILQ_PREV documented wrong; horape@tinuviel.compendium.net.arTheo de Raadt
2000-11-21various man page updates from freebsdJason Wright
2000-11-21Don't include mfs partitions in 'quot -a' since there is no device fileTodd C. Miller
to open.
2000-11-21Deal with va_list not being a pointer; this should be re-evaluated.Todd C. Miller
Fixes a compile problem on alpha.
2000-11-21From FreeBSD:Jason Wright
add support for the acenic copper and netgear ga620t (untested). This also updates the firmware to 12.4.13 for tigon 1, and 12.4.11+wpaul hacks for tigon 2
2000-11-21syncJason Wright
2000-11-21add alteon copper acenic and netgear copper ga620Jason Wright
2000-11-21prevent type overflow; dzerkel@columbus.rr.comTheo de Raadt
2000-11-21stupid Imac DV appears to misclasify the vga controller as DISPLAY_MISCTheo de Raadt
instead of DISPLAY_VGA
2000-11-21crank minor numberTodd C. Miller
2000-11-21Add references to new files.Todd C. Miller
2000-11-21BSD authentication routines from BSDI. Presently this is not used butTodd C. Miller
the login_* helper programs and other support will be committed in the near future.
2000-11-21Add pw_dup(3), a function to copy 'struct passwd'. It is allocated asTodd C. Miller
a single chunk with the strings pointing elsewhere in the buffer so a simple free() of the struct passwd * is all that is needed to decallocate.
2000-11-21Missed this in the strnvis(3) commit.Todd C. Miller
2000-11-21Add readpasasphrase(3), a more flexible getpass(3) replacement.Todd C. Miller
getpass(3) is now implemented in terms of readpasasphrase(3).
2000-11-21Add strnvis(3) -- a length-bounded version of strvis(3) with a returnTodd C. Miller
value similar to snprintf(3) and strlcpy(3).
2000-11-20Move fake prompt generation from skey_authenticate() to skeychallenge()Todd C. Miller
and getskeyprompt(). This means that when you get a challenge the result parameter is always filled in, even if the use is not in the skeykeys file.
2000-11-20Make new binutils compile on Alpha again; ok espie@tomo
2000-11-20syncTheo de Raadt
2000-11-20video in imac dvTheo de Raadt
2000-11-20likely to work on ich2 too; from deraadtMichael Shalayeff
2000-11-20amphy was a bit too liberal in attaching; Gregory Steuck <greg@nest.cx>Jason Wright
2000-11-20syncTheo de Raadt
2000-11-2082801BA audio devicesTheo de Raadt
2000-11-20support at least ATA6 on 82801BA; chrisTheo de Raadt
2000-11-20syncTheo de Raadt
2000-11-20repair; mpech@prosoft.org.lvTheo de Raadt
2000-11-20fixes; mpech@prosoft.org.lvTheo de Raadt
2000-11-20repairs; mpech@prosoft.org.lvTheo de Raadt
2000-11-20correct url handling; canacar@eee.metu.edu.trTheo de Raadt
2000-11-20various Xr fixes; nordin@cse.ogi.eduTheo de Raadt
2000-11-20limit luns on usbTheo de Raadt
2000-11-19Add in pciide.Todd C. Miller
2000-11-19XXX - Alpha port doesn't currently support weak symbolsTodd C. Miller
2000-11-19Correctly deal with NOMAN being set. Since it may be set in mk.confTodd C. Miller
we pull in bsd.own.mk before testing for it.
2000-11-19Add -I${.CURDIR}/../../../../lib/libsa to CPPFLAGS so md5.c can findTodd C. Miller
stand.h; ok ericj@openbsd.org
2000-11-19Remove prototypes for old BSD auth functions. New ones will live inTodd C. Miller
bsd_auth.h when BSD authentication is committed.
2000-11-19Handle more manpages oddities:Marc Espie
- recognizes \s<number> sequences (horizontal kerning) and removes them. - escaped | - parses .ds definitions, expands \*(ab and \*[abc...] (missing built-ins, such as en and em). - strips .HP, .VB - recognizes .Pp - handles some . ds (space in between). This fixes over 99% of all manpages generated from the ports tree. This is still missing a few cleanups and some regression testing.