Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-07-20 | adapt to new dup-to syntax | Theo de Raadt | |
2002-07-20 | use diff nicer | Theo de Raadt | |
2002-07-20 | Instead of copying out the signal trampoline on top of the stack, create | Artur Grabowski | |
an uvm aobj, copy out the signal trampoline into it and share that page among all processes for the same emulation. This also requires us to actually be able to tell signal code where the trampoline is located, so introduce a new field in struct proc - p_sigcode that is a pointer to sigcode. This allows us to remove all the ugly calculations of the signal trampoline address done in every sendsig function in the tree (that's why so many files are changed). Tested by various people. ok deraadt@ | |||
2002-07-20 | properly split yacc and lex use | Theo de Raadt | |
2002-07-20 | correct check for strchr() failure in EXAMPLE; from pinskia@physics.uc.edu | Peter Valchev | |
2002-07-20 | ansi | Theo de Raadt | |
2002-07-20 | abort on setusercontext failure; millert ok | Theo de Raadt | |
2002-07-20 | ansi | Theo de Raadt | |
2002-07-20 | Exit on setusercontext() failure; noticed by deraadt@ | Todd C. Miller | |
2002-07-20 | Exit if setusercontext() fails to set resources/priority and suidwarn | Todd C. Miller | |
is true. This is consistent with sendmail's behavior when things like initgroups() fail. | |||
2002-07-20 | Fix up WANT_LIBMILTER stuff for people who want to use it; downsj@downsj.com | Todd C. Miller | |
2002-07-20 | add flags to synopsis for isa. | Federico G. Schwindt | |
2002-07-20 | Add flags 0x00 to fd | Federico G. Schwindt | |
2002-07-20 | Show flags as "flags 0x00", not "flags Z". | Federico G. Schwindt | |
2002-07-20 | Error out if setusercontext() fails and the runas user is not root. | Todd C. Miller | |
Pointed out by deraadt@ | |||
2002-07-20 | try to make pingsock and rpcsock resv too | Theo de Raadt | |
2002-07-20 | If we call siop_intr manually, make sure it's protected by splbio. | Artur Grabowski | |
My filesystem has been chopped to pieces. | |||
2002-07-20 | short -u description in httpd -h | Henning Brauer | |
pointed out by Sam Smith | |||
2002-07-20 | do not install mk-amd-map and remove references to it in our documentation | Peter Valchev | |
it has been broken since the beginning, and nobody uses it anyway ok deraadt | |||
2002-07-20 | sync | Theo de Raadt | |
2002-07-20 | compile on sparc64 | Niels Provos | |
2002-07-20 | knf | Theo de Raadt | |
2002-07-20 | ansi | Theo de Raadt | |
2002-07-20 | remove pre-apache-1.3.26 cruft | Henning Brauer | |
Note for upgraders: to actually see the current manual, you should do find /var/www/htdocs/manual/ -type f -exec rm {} \; cd /usr/src/usr.sbin/httpd/ make -f Makefile.bsd-wrapper distribution you will also need a current httpd.conf, MultiViews need to be enabled in /var/www/htdocs/manual/ | |||
2002-07-20 | comment clarification. niels ok | Jun-ichiro itojun Hagino | |
2002-07-19 | don't try to find a "suitable" bourne shell for subcommands, just use our | Henning Brauer | |
/bin/sh, it is fine. Sam Smith <S@mSmith.net> reported a breakage in case bash in installed, and dhartmei@ analyzed, as far as I can see from the old mail sam forwarded me. | |||
2002-07-19 | sync MANUALPAGES with reality | Henning Brauer | |
2002-07-19 | sync | Theo de Raadt | |
2002-07-19 | enable multiviews in the manual dir. | Henning Brauer | |
now this is more than just a collection of dead links. | |||
2002-07-19 | sync w/ apache 1.3.26 | Henning Brauer | |
2002-07-19 | you can't always cast pointer to int; use intptr_t. | Jun-ichiro itojun Hagino | |
2002-07-19 | merge | Henning Brauer | |
2002-07-19 | import apache 1.3.26 + mod_ssl 2.8.10 | Henning Brauer | |
2002-07-19 | minor tweaks, sigh | Theo de Raadt | |
2002-07-19 | bunch more careful tweaks | Theo de Raadt | |
2002-07-19 | convert functions from K&R style to prototype style. | Marco S Hyman | |
Function arg types have not yet been fixed. OK fgs@, espie@ | |||
2002-07-19 | display a warning from ssh when XAuthLocation does not exist or xauth | Kevin Steves | |
returned no authentication data. ok markus@ | |||
2002-07-19 | a few more comments and debugs, other cosmetic stuff | Michael Shalayeff | |
2002-07-19 | do not use broken tsc on geode and broken latch on ns geodes; testing by markus@ | Michael Shalayeff | |
2002-07-19 | Remove swedish comment. -moj | Mats O Jansson | |
2002-07-19 | Define an IPL_VM and mark IPL_IMP as "not to be used". | Artur Grabowski | |
2002-07-19 | remove fatal cleanups after fork; based on discussions with and code | Markus Friedl | |
from solar. | |||
2002-07-19 | constify, have missing prototypes, use pedantic compilation options. | Jun-ichiro itojun Hagino | |
niels ok | |||
2002-07-19 | And back out the last change again. | Daniel Hartmeier | |
2002-07-19 | feature requests come from idiots | Henning Brauer | |
2002-07-19 | Fix format bug with ps -o group. ok deraadt@ | Dale Rahn | |
2002-07-19 | rework the interface lookup routines internals. | Henning Brauer | |
less and easier code than before. no functional changes. ok frantzen@, dhartmei@ | |||
2002-07-19 | Support # comments at the end of lines and inside (multi-line) string | Daniel Hartmeier | |
literals, so you can do things like macro="{ foo, # first entry bar, # second entry baz }" # last entry or pass in on $ext_if \ # external interface proto tcp \ # TCP connections from any to $ext_if \ # to the gateway itself keep state And sneaking in two minor fixes for KNF. | |||
2002-07-19 | Use getnameinfo() instead of gethostbyaddr() to support IPv6 reverse | Daniel Hartmeier | |
lookups with pfctl -r. Makes things actually simpler. | |||
2002-07-19 | deal with the fact that the struct node_host ifa_pick_ip gets is not always | Henning Brauer | |
the result of an interface expansion. in this case ifa_pick_ip does an address family check (that's actually a (wanted) side effect). Thus, we need to spit out a meaningfull error message in case of a mismatch. also adjust all the other error messages, they were also assuming that nh is the result of an interface expansion. after a looooong discussion on icb (dhartmei@, pb@, me) we agreed on the term "translation address" for that. okay dhartmei@ |