Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-09-02 | make sure to open TCP socket (in case getaddrinfo supports SCTP). sync w/kame | Jun-ichiro itojun Hagino | |
2003-09-02 | no need for extra {}. sync w/ kame | Jun-ichiro itojun Hagino | |
2003-09-02 | make sure config_list does not get garbage. from kame | Jun-ichiro itojun Hagino | |
2003-09-02 | use poll since it is easier than fd_set overflows; itojun ok | Theo de Raadt | |
2003-09-02 | escape punctuation; (and a nit in openssl.1) | Jason McIntyre | |
ok deraadt@ | |||
2003-08-31 | add FILES and SEE ALSO sections; | Jason McIntyre | |
2003-08-31 | Make deviceInitAll work again. -moj | Mats O Jansson | |
2003-08-30 | spacing; | Jason McIntyre | |
2003-08-30 | - sync SYNOPSIS(es) and ciphers/digests available with reality | Jason McIntyre | |
- remove non-OBSD details - indent examples - general macro/punctuation cleanup | |||
2003-08-28 | tweak; | Jason McIntyre | |
ok frantzen@ | |||
2003-08-27 | these are not needed here; henning@ ok. | Federico G. Schwindt | |
2003-08-27 | - sort SYNOPSIS and DESCRIPTION | Jason McIntyre | |
- add -v to SYNOPSIS from Andrey Matveev; - indent examples - sync usage() with man page ok deraadt@ | |||
2003-08-27 | Build process.S using the rules in bsd.lib.mk, instead of having a specific | Hans Insulander | |
target for building it. This makes the build work for people who build with DEBUGLIBS=Yes. Tested by brad and jolan. ok brad@ jolan@ | |||
2003-08-27 | Avoid doing @cwd if no file follows. Patch from Pedro Bastos (based on | Jolan Luff | |
one from espie@) ok fgsch@ naddy@ | |||
2003-08-27 | correct error message (wall -> syslogd) | Anil Madhavapeddy | |
2003-08-26 | Fix afsd on architectures that care about alignment. This corrects a problem | Bob Beck | |
that would manifest itself as afsd bus erroring on startup. Tested on sparc64 and again on i386, Ok hin@ | |||
2003-08-26 | bitgarbage to the recycle bin | Henning Brauer | |
2003-08-25 | rename struct dinode to ufs1_dinode. clears the namespace and makes | Ted Unangst | |
way for some future work. no function changes yet. help testing otto@ and markus@ | |||
2003-08-25 | string shit | Henning Brauer | |
ok markus@ | |||
2003-08-25 | protos | Theo de Raadt | |
2003-08-23 | oops, if file is not on ftp server with PKG_PATH, check installed too. | Ted Unangst | |
should resolve han boetes's problem. | |||
2003-08-22 | Don't age non-gateway host routes. NetBSD PR bin/22568 from Andrew White | Jun-ichiro itojun Hagino | |
2003-08-21 | die - regenerated during build | Henning Brauer | |
noriced by theo | |||
2003-08-21 | New keywords: @extra and @extraunexec. | Marc Espie | |
Used to record extra files (configuration) and action, that will only be taken with pkg_delete -c. | |||
2003-08-21 | print the operating system of TCP SYN packets with the -o option | Mike Frantzen | |
2003-08-21 | stuff needed for passive OS fingerprinting PF rules | Mike Frantzen | |
2003-08-21 | thank you, cvs, for re-adding files that were removed on purpose | Henning Brauer | |
2003-08-21 | sync MANUALFILES | Henning Brauer | |
2003-08-21 | we have our own one | Henning Brauer | |
2003-08-21 | apache bug #21737 ( http://nagoya.apache.org/bugzilla/show_bug.cgi?id=21737) | Henning Brauer | |
introduced with 1.3.28: Apparently there has been a regression in 1.3.28 from 1.3.27 whereby CGI scripts are getting left around as zombies when suexec is in use, apparently because of a change in src/main/alloc.c that altered the behavior when sending SIGTERM to a child process. With suexec, the SIGTERM at line 2862 will fail not because the subprocess is dead already but because the httpd uid has no permission to term the cgi process, which is running as some other user. fix by Ralf S. Engelschall: That is, we don't have to check for the return value of ap_os_kill() and especially not check for ESRCH, because we _HAVE_ to waitpid() for it anyway (because it's our child and it either is already terminated and is waiting as a zombie for our waitpid() or it is still running). Under Unix it cannot be that a (non-detached in the sense of BSD's daemon(3)) child of a process just does no longer exists as long as the parent still exists and as long as the parent still has not done waitpid() for the child. So ESRCH cannot happen in our situation and the patch we currently use is fully sufficient. Both are at least portable enough for Unix, of course... | |||
2003-08-21 | #include conf.h -> ap_config.h | Henning Brauer | |
2003-08-21 | fix | Henning Brauer | |
2003-08-21 | merge | Henning Brauer | |
2003-08-21 | merge | Henning Brauer | |
2003-08-21 | import apache 1.3.28 and mod_ssl 2.8.15 | Henning Brauer | |
2003-08-20 | Convert from select to poll; based on a patch from deraadt@ | Todd C. Miller | |
OK deraadt@ | |||
2003-08-19 | use poll instead; millert fgsch ok | Theo de Raadt | |
2003-08-19 | fix tv_usec setting. deraadt | Jun-ichiro itojun Hagino | |
2003-08-19 | one missing freeifaddrs | Jun-ichiro itojun Hagino | |
2003-08-19 | rewrite SIOCGIFCONF into getifaddrs. deraadt ok | Jun-ichiro itojun Hagino | |
2003-08-19 | very hairy modifications for dynamic fd_set handling. dynamic rpc fd_set's | Theo de Raadt | |
are just nasty; ok matthieu | |||
2003-08-19 | use poll instead of select; dhartmei ok | Theo de Raadt | |
2003-08-19 | convert to poll; ok dhartmei | Theo de Raadt | |
2003-08-19 | convert to poll; ok dhartmei | Theo de Raadt | |
2003-08-18 | Call tzset() to stash the current timezone before we chroot. | Todd C. Miller | |
OK deraadt@ and avsm@ | |||
2003-08-18 | fix two bugs found by ben goren. -a should only look at installed | Ted Unangst | |
packages, and if we build a URL from PKG_PATH don't treat it like a filename. ok espie@ | |||
2003-08-18 | err/warn \n cleanup | Hans Insulander | |
From Tom Cosgrove via deraadt@ | |||
2003-08-18 | Simple string cleanup. | Hans Insulander | |
ok todd@ | |||
2003-08-17 | damn lies | Henning Brauer | |
2003-08-16 | more errx/warnx style \n errors; tom.cosgrove@arches-consulting.com | Theo de Raadt | |