summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2000-11-30agents must not dump core, ok niels@Markus Friedl
2000-11-30-T is for both protocolsMarkus Friedl
2000-11-30check -T before isatty()Markus Friedl
2000-11-30x509_hash() should also ignore the id length (for matching purposes)Angelos D. Keromytis
-- willey@serasystems.co
2000-11-29document -u flag and environment variablesTodd C. Miller
2000-11-29Bugfix: reset 16-bit pcmcia in chip initialisation sequence; from NetBSD.Aaron Campbell
2000-11-29Correct PCI interrupt setup routine for Texas Instruments PCI113X CardBusAaron Campbell
bridges so that hot insertion and removal works; from NetBSD.
2000-11-29regenMichael Shalayeff
2000-11-29a couple of compaq raid definitions; from netbsdMichael Shalayeff
2000-11-29Clarify that the RX5C57X requires write to the PCI_LEGACY to disable andAaron Campbell
not PCI_BCR_INTR; from NetBSD.
2000-11-29Power down PC cards at shutdown time; from NetBSD. I'm also reverting my ownAaron Campbell
fix for this (rev 1.7) as this is the better way to do it. This fixes the problem seen with reboot while an xl(4) CardBus card is in a slot on my Toshiba Tecra 550CDT (so it should fix the same problem espie@ has seen on a different model Toshiba laptop).
2000-11-29sshd -D, startup w/o daemon(), for monitoring scripts or initab;Markus Friedl
from handler@sub-rosa.com and eric@urbanrage.com; ok niels@
2000-11-29des_cbc_encrypt -> des_ncbc_encrypt since it already updates the IVMarkus Friedl
2000-11-29Don't print an extra newline after reading passphrase if echo was notTodd C. Miller
turned off since we already printed one from the user.
2000-11-29note ICH2 supportMichael Shalayeff
2000-11-29show IP address and hostname when new key is encountered. okay markus@Niels Provos
2000-11-29Spelling and punctuation fixes; FreeBSDbrian
2000-11-28How did this work?Jason Wright
2000-11-28Add ``enable/disable'' tcpmssfixup - enabled by default.brian
2000-11-28Use only the bit after the ``\'' when hashing the challenge inbrian
MSChapv2 Submitted by: Ustimenko Semen <semen@iclub.nsu.ru>
2000-11-28Free the same type we malloced with.Artur Grabowski
2000-11-28Repair: grrrrrr... brought in wrong changes -again-Jason Wright
2000-11-28oops, not yetJason Wright
2000-11-28remove statics and knfJason Wright
2000-11-28'y' key is too close to 't' keyJason Wright
2000-11-28update list of supported tigon based boardsJason Wright
2000-11-27This patch fixes ArchFindMember so that it handles SVR4 membersMarc Espie
similarly to read_archive. Note we no longer bother seeking back to the start of the header, as only ArchTouch accesses that header, and can do the seek itself. With this, arch handling should be working, more or less. thanks to Todd, Miod, Naddy for reviewing those patches.
2000-11-27This does fix some nasty issues: ar field members are NOT null-terminated.Marc Espie
Hence, read_archive must be very careful to parse stuff correctly: don't use str* when mem* are appropriate, copy numeric fields and ensure they're terminated...
2000-11-27We take of the SVR4 archive handling data structure from our archive,Marc Espie
and put it into a specific structure (it is wasteful to keep lugging SVR4 structures once an archive is parsed). By tweaking read_archive slightly, we can achieve a nicer interface to ArchSVR4Entry. Note a bug in make: ArchFindMember does (currently) not use the SVR4 code, hence some archive members won't be found in non-caching mode...
2000-11-27Factorise duplicated code involved in touching archives.Marc Espie
2000-11-27Use -n to test if a variable is non-zero. Otherwise, if the variable'sTodd C. Miller
contents start with a '-' test becomes unhappy (since it interprets it as another option).
2000-11-27Style. Parts of xcast handling needs more thought. (provos@ ok)Hakan Olsson
2000-11-27Be more careful with ARP. Fix PR#1490. From gluk@ptci.ruHakan Olsson
2000-11-27MLINK check_expire.3 -> login_check_expire.3Todd C. Miller
2000-11-27Fix order of SEE ALSO entriesTodd C. Miller
2000-11-27first cut at a man page for login_check_expire()Todd C. Miller
2000-11-27ifndef, not ifdefAngelos D. Keromytis
2000-11-27Fix deletion of flows.Angelos D. Keromytis
2000-11-26setusercontext should not set umask as this interferes with theTodd C. Miller
umask specified for ftpd on the command line. Closed PR #1530
2000-11-26alpha clock fixes from NetBSDTodd C. Miller
Fixes ' no more 'WARNING: preposterous clock chip time' on 164SX
2000-11-26*** empty log message ***Todd C. Miller
2000-11-26syncTheo de Raadt
2000-11-26Print select collisions in the vmstat -s output.Artur Grabowski
(XXX - I couldn't find a better place to put it.).
2000-11-26Use pwd_mkdb -u usernameTodd C. Miller
Call system() with a list to avoid a call to sh
2000-11-26Update for pw_mkdb(3) interface change. All but vipw and userdel canTodd C. Miller
specify a username (and thus avoid rebuilding the while database).
2000-11-26login_check_expire(3), a helper function for use with BSD authentication.Todd C. Miller
This lives in libutil because it uses pw_lock(3) and friends. Needs a man page (soon!).
2000-11-26Add a username argument to pw_mkdb to match 'pwd_mkdb -u username'.Todd C. Miller
Crank the shlib major number due to the interface change.
2000-11-26Support -u username option. Loosely based on FreeBSD's changes.Todd C. Miller
I've also restructured things a bit to cut the number of master.passwd parses in half from 6 to 3. We can't really get away with fewer than that without sacrificing locality in the .db files.
2000-11-26Properly implement errno handling for the threaded libc (libc_r)Dale Rahn
The powerpc specific code was previously handling system call errors as if kernel threads existed (currently only userlang threads are modeled). Thus if multiple threads existed in a process, the process would not get the correct errno from a system call. This would cause _many_ tests to fail. Fixing this causes a number of the tests in libc_r/TEST to now work, that did not before, however a few still fail.
2000-11-25Fix some warnings and take advantage of perl5 system definesTodd C. Miller
In adduser, use /etc/ptmp as a lock file like the other passwd programs. Currently it is just kept empty which is not so great. Use sysopen() with explicit file modes so there is no race whereby a user could see the contents on the master.passwd temp file in rmuser. Fix order of file opens in rmuser so we don't try and remove anything unless we can lock all our files.