Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-06-11 | sync with check_host_key() change | Jakob Schlyter | |
2003-06-11 | clean up check_host_key() and improve SSHFP feedback. ok markus@ | Jakob Schlyter | |
2003-06-11 | sync | Theo de Raadt | |
2003-06-11 | Number 43. | Paul Janzen | |
2003-06-11 | spelling | Paul Janzen | |
2003-06-11 | mdoc version of pppd(8); | Jason McIntyre | |
sanity checked and help from pjantzen@ | |||
2003-06-11 | Licensing issues resolved on bs and hunt, so build them again. | Paul Janzen | |
2003-06-11 | Original author agreed to permit bs to be released under BSD license. | Paul Janzen | |
Many thanks to Nick Stott for his detective work on this. | |||
2003-06-11 | New license from the official hunt release at | Paul Janzen | |
ftp://ftp.cgl.ucsf.edu/pub/hunt.shar.Z -- it has been approved by all three authors (Conrad Huang, Ken Arnold, and Greg Couch). | |||
2003-06-11 | license was lost; it is from print.c | Theo de Raadt | |
2003-06-11 | ansification | Theo de Raadt | |
2003-06-11 | typo | Jun-ichiro itojun Hagino | |
2003-06-11 | - sync up MLD declaration with RFC3542 (s/MLD6/MLD/) | Jun-ichiro itojun Hagino | |
- routing header declaration with RFC3542 (note: sizeof(ip6_rthdr0) has changed!) also, sync up with RFC2460 routing header definition (no "strict" source routing mode any more) part of advanced API update (RFC2292 -> 3542). markus, todd, millert, henning ok | |||
2003-06-11 | It is important not to forget "membar(MemIssue)". Got missed | Henric Jungheim | |
when extracting the minimal diff for the previous iommu change. ok jason@ | |||
2003-06-11 | The upgrade script depends upon that, if mount_foo is present on the ramdisk | Miod Vallat | |
filesystem, option FOO is in the kernel. Ensure this for mount_mfs/option MFS as well, to prevent failing upgrades on some architectures. ok krw@ millert@ | |||
2003-06-11 | Add pmsi to GENERIC, PR #3251 | Miod Vallat | |
2003-06-11 | Much of the sbus, psycho, and schizo bus_dma code is the same, so let's | Henric Jungheim | |
call the real implementation functions directly instead of duplicating lots of code that only calls the real stuff anyway. tested by miod@ henning@ ok jason@ | |||
2003-06-11 | The "min" and "max" functions cast to "u_int", which can lead to surprising | Henric Jungheim | |
results. Use the MIN/MAX macros instead. tested by miod@ ok jason@ millert@ | |||
2003-06-11 | - sync up MLD declaration with RFC3542 (s/MLD6/MLD/) | Jun-ichiro itojun Hagino | |
- routing header declaration with RFC3542 (note: sizeof(ip6_rthdr0) has changed!) also, sync up with RFC2460 routing header definition (no "strict" source routing mode any more) part of advanced API update (RFC2292 -> 3542). markus, todd, millert, henning ok | |||
2003-06-11 | support to arm. ok deraadt@ | Kevin Lo | |
2003-06-10 | Rework script using advanced coding techniques like a case statement, | Kenneth R Westerback | |
factoring out common code to functions, consistant indenting, etc. Should be no semantic changes, just much easier to read, except for ensuring that certain cable companies no longer confuse the issue by supplying name server addresses without a domain name. Either will now result in the creation of an appropriate resolv.conf Inspired by PRs #2969 from Alexander Taler and #3135 from Jan Johansson. Fixes #3135 completely according to Jan. #2969 may have another item to fix. Tested by various, including tech@'ers Jan Johansson, Uwe A. P. Wuerdinger and Jim Rees. Let the flood of enhancements begin now that it can actually be read and understood ... ok deraadt@. | |||
2003-06-10 | Whoops, <= 0 should be < 0. Problem noticed by marc@ | Todd C. Miller | |
2003-06-10 | mostly ansi cleanup; pval ok | Theo de Raadt | |
2003-06-10 | It would kind of help if the flags member was initialized, otherwise random | Daniel Hartmeier | |
rules create state. Truly hard to spot. Unless you run the code, of course. | |||
2003-06-10 | Remove an extraneous "& 0xff" (the cast to unsigned char is sufficient). | Todd C. Miller | |
Use "extern __inline" instead of "static __inline" since the extern flavor behaves more like a macro (which is what we want). OK deraadt@ and tested on all platforms by various folks. | |||
2003-06-10 | Add login class support; based on a diff from Peter Werner | Todd C. Miller | |
2003-06-10 | debug0 and debug1 are defined elsewhere -- make 'em extern here | Michael Shalayeff | |
2003-06-10 | o Pass the -G flag to sendmail like sendmail(8) says | Todd C. Miller | |
o Delivery in the foreground instead of just queueing since otherwise mail is not delivered until the next queue run. From Takahiro Yugawa; closes PR 3182 | |||
2003-06-10 | Install rcs2log, not a symlink to ../share/cvs/contrib/rcs2log | Todd C. Miller | |
Fix from SUZUKI Hitoshi; closes PR 3298 | |||
2003-06-10 | Check that login class exists before using it; based on a patch from | Todd C. Miller | |
Peter Werner. Closes PR 2699. | |||
2003-06-10 | o Check for fwrite() error with != 1, not <= 0 (mostly style) | Todd C. Miller | |
o Correct some error messages o More informative error when reading a line that is > LINE_MAX o When saving password, only alloc space for what is used | |||
2003-06-10 | Keep a table of password types, and their associated lengths, and | Todd C. Miller | |
check in useradd or usermod whether the given encrypted password has the correct length. Factor out time code into a function, scantime() Perform ctype(3) operations on unsigned chars. From NetBSD (agc) | |||
2003-06-10 | Use syslog(3) to log new users and groups, deletions of users and groups, | Todd C. Miller | |
and modification of user and group information. Syslog priority is LOG_INFO, facility is LOG_USER (there is no need to do this via LOG_AUTH, since the password and group files are world readable). From NetBSD (agc) | |||
2003-06-10 | Catch illegal flags and reply with usage; from NetBSD (agc) | Todd C. Miller | |
2003-06-10 | o rename login variable to login_name | Todd C. Miller | |
o remove user from supplementary groups when deleting a user and not preserving information. o add some const o check that user/group is local (not YP) before trying to change it. From NetBSD (agc) | |||
2003-06-10 | don't allow /dev/crypto to be opened ifndef CRYPTO (the thread hasn't been | Jason Wright | |
started, so all operations will hang later on anyway). | |||
2003-06-10 | add missing copyright notice | Todd C. Miller | |
2003-06-10 | knf | Theo de Raadt | |
2003-06-10 | Be clear that we mean "inclusive" when we say between; jmc@ OK | Todd C. Miller | |
2003-06-10 | o make mount(2) return EROFS, not EPERM if ffs is dirty | Todd C. Miller | |
o document EROFS in man page (2 possible causes) o recognize EROFS in mount_ffs and try to give a reasonable error message deraadt@ OK | |||
2003-06-10 | predict() was broken for n > 1 in rev 1.2; this fixes it and closes PR 3306 | Todd C. Miller | |
2003-06-10 | fix grammer regarding queues; noted by jlouis@mongers.org | Theo de Raadt | |
2003-06-10 | boring cleanups | Theo de Raadt | |
2003-06-10 | Do not crash on unsupported IPSec ID types, as noted by Eric Boudrand. | Hakan Olsson | |
2003-06-10 | - removed obsolete section about rc.wscons and wscons.conf; | Jason McIntyre | |
from Wouter Clarie - thanks! | |||
2003-06-10 | - section reorder | Jason McIntyre | |
- COMPATIBILITY merge - macro cleanup - kill whitespace at EOL - new sentence, new line ssh pages ok markus@ | |||
2003-06-10 | - remove entries for /usr/include/kerberosIV and /usr/src/kerberosIV; | Jason McIntyre | |
also spotted by Wouter Clarie - changed /usr/include/ssl -> /usr/include/openssl | |||
2003-06-10 | Use ITIMER_VIRTUAL instead of ITIMER_PROF as the thread scheduler | Marco S Hyman | |
timer. Allows threaded aps to be profiled. Tested on i386, alpha, macppc, sparc64 and vax. miod@ says: I think this is the right thing to do. | |||
2003-06-10 | - rip out support for a.out and 32-bit kernels | Brad Smith | |
- cleanup and simplify Makefile jason@ ok | |||
2003-06-09 | Switch to 2 clause licenses. Spotted by Theo. | Hugh Graham | |