summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-03-18filter ipv6 on the bridge.jasoni
- ok jason@
2002-03-18Document option PTRACE; from Brian J. Kifiak, thanks!Miod Vallat
2002-03-18These are macro inlines on vax, so check if they're defined beforeHugh Graham
trying to prototype them. millert@ ok.
2002-03-18$OpenBSD$Hugh Graham
2002-03-18catchup on a few specials we haveMichael Shalayeff
2002-03-18move auth_approval into getpwnamallow with help from millert@Niels Provos
2002-03-18 Enter the new undo code. it is still disabled since it has bugs, but it'sVincent Labrecque
somewhat more useful.... ok millert@ + no objections on ICB
2002-03-18set client to NULL after xfree(), from Rolf Braun <rbraun+ssh@andrew.cmu.edu>Dug Song
2002-03-18 grep/compile mode shouldn't be readonly by default.Vincent Labrecque
ok art@
2002-03-18have the authentication functions return the authentication contextNiels Provos
and then do_authenticated; okay millert@
2002-03-18no keyboard -- no cryMichael Shalayeff
2002-03-17Change the format for hosts lines to the one the installKenneth R Westerback
scripts use - '1.2.3.4 host.my.domain host'. ok millert@
2002-03-17Move SA_FILE definition to sa.h.Angelos D. Keromytis
2002-03-17Mention isakmpd_sa file.Angelos D. Keromytis
2002-03-17Add 'T' and 'S' commands (for tearing-down and reporting all Phase 2Angelos D. Keromytis
SAs), from bdallen@nps.navy.mil
2002-03-17getpwnamallow returns struct passwd * only if user valid; okay markus@Niels Provos
2002-03-17Clean up building of debug_map. mips and non-mips can moreArtur Grabowski
or less share the same code.
2002-03-17Update to match new registers in struct regArtur Grabowski
2002-03-17In PT_{GET,SET}REGS there is no reason to not get/set %l* and %i*.Artur Grabowski
This change will break debuggers, so if you have any, rebuild.
2002-03-17Don't set LK_RETRY to vn_lock with LK_RECURSEFAIL.Artur Grabowski
2002-03-17Add a DIAGNOSTIC check for when both LK_CANRECURSE andArtur Grabowski
LK_RECURSEFAIL are set.
2002-03-17Add references to FILES and SEE ALSO sections. From David Krause.Daniel Hartmeier
2002-03-17Since LK_RECURSEFAIL and LK_CANRECURSE contradict each otherArtur Grabowski
(although they are not opposites), avoid setting LK_CANRECURSE if LK_RECURSEFAIL is set in the caller.
2002-03-17Update.Miod Vallat
2002-03-17This along with the recent dynamic linker fixes allows modules to workBrad Smith
with Apache on our ELF-based architecures. Enable alpha, powerpc and sparc64.
2002-03-17Remove hackery I added to deal with dlopen(NULL), handle it in a reasonablyDale Rahn
sane manner. This and the previous resolve.c change art@ ok
2002-03-17Keep _dl_last_object in sync with reality if last element in list is deleted.Dale Rahn
allocated memory is not necessarily 0ed, make sure next pointer is inited.
2002-03-17Examine correct fields in mount(8) output to determine if rootKenneth R Westerback
is nfs mounted, i.e. install is running on a diskless machine. ok millert@
2002-03-17Clean up the zapping of bad variables. Instead of implementingArtur Grabowski
_dl_suid_ok, just use the issetugid syscall. ok drahn@.
2002-03-16Use wdc_setdriveConstantine Sapuntzakis
2002-03-16skip absent screens; from leonardo@cefetpr.brMichael Shalayeff
2002-03-16no need to include sys/conf.h w/ machine/conf.h; from David KrauseMichael Shalayeff
2002-03-16 This should've been commited yesterday, before the funmap change.Vincent Labrecque
ok millert@
2002-03-16Add missing auth_close() and login_close() calls.Todd C. Miller
2002-03-16 Make these special buffers readonly by default. ok art@Vincent Labrecque
2002-03-16Add CAVEATS section similar to authenticate.3Todd C. Miller
2002-03-16o Don't allow password-less accounts to login (like in 2.9 and below)Todd C. Miller
o Stash copy of struct passwd via auth_setpwd() to avoid extra needless getpwnam() calls.
2002-03-16Avoid potential corruption of passwd pointer auth_approval().Todd C. Miller
Also check for strdup() failure while I am here.
2002-03-16Avoid potential corruption of passwd pointer auth_approval().Todd C. Miller
Similar to my recent rshd change.
2002-03-16Add missing login_close() call.Todd C. Miller
2002-03-16Add CAVEATS section that details which functions call getpw* soTodd C. Miller
the programmer knows when to make a local copy of the struct passwd and how to avoid multiple passwd file lookups.
2002-03-16auth_approval() calls getpwnam() which can modify the stashed passwdTodd C. Miller
struct. Use auth_setpwd() to stash a copy of the struct so auth_approval() doesn't need to use getpwnam(). Closes PR 2470.
2002-03-16BSD license. from Daniel Kouril via Dug Song. ok markus@Kevin Steves
2002-03-16split auth_rhosts_rsa(), ok provos@Markus Friedl
2002-03-16Log extra info for ATAPI devicesConstantine Sapuntzakis
2002-03-16The new code logs the control signals on the IDE bus. You can extract the logConstantine Sapuntzakis
using atactl <device> dump. The log will help us support more devices. Send logs to csapuntz@
2002-03-16 map undo_dump to the "undo-list" command.Vincent Labrecque
2002-03-16skip inflateEnd if inflate fails; ok provos@Markus Friedl
2002-03-16Add auth_getpwd MLINKTodd C. Miller
2002-03-16o Document auth_getpwd()Todd C. Miller
o Use .Pp, not .sp o Work around two mdoc bugs by using .br