Age | Commit message (Collapse) | Author | |
---|---|---|---|
2000-11-21 | Sync usage() output with man page; mpech@prosoft.org.lv | Aaron Campbell | |
2000-11-21 | Sync usage() output and man page; mpech@prosoft.org.lv | Aaron Campbell | |
2000-11-21 | Oops... alphabetize. | Aaron Campbell | |
2000-11-21 | Sync usage() output with man page; mpech@prosoft.org.lv | Aaron Campbell | |
2000-11-21 | Sync usage() output with man page; mpech@prosoft.org.lv | Aaron Campbell | |
2000-11-21 | Use __progname in usage() since this may be invoked as "sum" as | Aaron Campbell | |
well; mpech@prosoft.org.lv | |||
2000-11-21 | bye bye MULOG. code that is easy to read, is code that is easy to audit | Theo de Raadt | |
2000-11-21 | sigjmp & statics begone | Theo de Raadt | |
2000-11-21 | errno saving inside really crummy signal handlers | Theo de Raadt | |
2000-11-21 | CAST-128 has a maximum of 128bit keys, not 256. | Angelos D. Keromytis | |
2000-11-21 | Fix an int * that should be a size_t * when calling sysctl(3). | Todd C. Miller | |
2000-11-21 | Fix. | Angelos D. Keromytis | |
2000-11-21 | TAILQ_PREV documented wrong; horape@tinuviel.compendium.net.ar | Theo de Raadt | |
2000-11-21 | various man page updates from freebsd | Jason Wright | |
2000-11-21 | Don't include mfs partitions in 'quot -a' since there is no device file | Todd C. Miller | |
to open. | |||
2000-11-21 | Deal with va_list not being a pointer; this should be re-evaluated. | Todd C. Miller | |
Fixes a compile problem on alpha. | |||
2000-11-21 | From 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-21 | sync | Jason Wright | |
2000-11-21 | add alteon copper acenic and netgear copper ga620 | Jason Wright | |
2000-11-21 | prevent type overflow; dzerkel@columbus.rr.com | Theo de Raadt | |
2000-11-21 | stupid Imac DV appears to misclasify the vga controller as DISPLAY_MISC | Theo de Raadt | |
instead of DISPLAY_VGA | |||
2000-11-21 | crank minor number | Todd C. Miller | |
2000-11-21 | Add references to new files. | Todd C. Miller | |
2000-11-21 | BSD authentication routines from BSDI. Presently this is not used but | Todd C. Miller | |
the login_* helper programs and other support will be committed in the near future. | |||
2000-11-21 | Add pw_dup(3), a function to copy 'struct passwd'. It is allocated as | Todd 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-21 | Missed this in the strnvis(3) commit. | Todd C. Miller | |
2000-11-21 | Add readpasasphrase(3), a more flexible getpass(3) replacement. | Todd C. Miller | |
getpass(3) is now implemented in terms of readpasasphrase(3). | |||
2000-11-21 | Add strnvis(3) -- a length-bounded version of strvis(3) with a return | Todd C. Miller | |
value similar to snprintf(3) and strlcpy(3). | |||
2000-11-20 | Move 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-20 | Make new binutils compile on Alpha again; ok espie@ | tomo | |
2000-11-20 | sync | Theo de Raadt | |
2000-11-20 | video in imac dv | Theo de Raadt | |
2000-11-20 | likely to work on ich2 too; from deraadt | Michael Shalayeff | |
2000-11-20 | amphy was a bit too liberal in attaching; Gregory Steuck <greg@nest.cx> | Jason Wright | |
2000-11-20 | sync | Theo de Raadt | |
2000-11-20 | 82801BA audio devices | Theo de Raadt | |
2000-11-20 | support at least ATA6 on 82801BA; chris | Theo de Raadt | |
2000-11-20 | sync | Theo de Raadt | |
2000-11-20 | repair; mpech@prosoft.org.lv | Theo de Raadt | |
2000-11-20 | fixes; mpech@prosoft.org.lv | Theo de Raadt | |
2000-11-20 | repairs; mpech@prosoft.org.lv | Theo de Raadt | |
2000-11-20 | correct url handling; canacar@eee.metu.edu.tr | Theo de Raadt | |
2000-11-20 | various Xr fixes; nordin@cse.ogi.edu | Theo de Raadt | |
2000-11-20 | limit luns on usb | Theo de Raadt | |
2000-11-19 | Add in pciide. | Todd C. Miller | |
2000-11-19 | XXX - Alpha port doesn't currently support weak symbols | Todd C. Miller | |
2000-11-19 | Correctly deal with NOMAN being set. Since it may be set in mk.conf | Todd C. Miller | |
we pull in bsd.own.mk before testing for it. | |||
2000-11-19 | Add -I${.CURDIR}/../../../../lib/libsa to CPPFLAGS so md5.c can find | Todd C. Miller | |
stand.h; ok ericj@openbsd.org | |||
2000-11-19 | Remove prototypes for old BSD auth functions. New ones will live in | Todd C. Miller | |
bsd_auth.h when BSD authentication is committed. | |||
2000-11-19 | Handle 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. |