summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2003-09-02make sure to open TCP socket (in case getaddrinfo supports SCTP). sync w/kameJun-ichiro itojun Hagino
2003-09-02no need for extra {}. sync w/ kameJun-ichiro itojun Hagino
2003-09-02make sure config_list does not get garbage. from kameJun-ichiro itojun Hagino
2003-09-02use poll since it is easier than fd_set overflows; itojun okTheo de Raadt
2003-09-02escape punctuation; (and a nit in openssl.1)Jason McIntyre
ok deraadt@
2003-08-31add FILES and SEE ALSO sections;Jason McIntyre
2003-08-31Make deviceInitAll work again. -mojMats O Jansson
2003-08-30spacing;Jason McIntyre
2003-08-30- sync SYNOPSIS(es) and ciphers/digests available with realityJason McIntyre
- remove non-OBSD details - indent examples - general macro/punctuation cleanup
2003-08-28tweak;Jason McIntyre
ok frantzen@
2003-08-27these are not needed here; henning@ ok.Federico G. Schwindt
2003-08-27- sort SYNOPSIS and DESCRIPTIONJason McIntyre
- add -v to SYNOPSIS from Andrey Matveev; - indent examples - sync usage() with man page ok deraadt@
2003-08-27Build process.S using the rules in bsd.lib.mk, instead of having a specificHans 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-27Avoid doing @cwd if no file follows. Patch from Pedro Bastos (based onJolan Luff
one from espie@) ok fgsch@ naddy@
2003-08-27correct error message (wall -> syslogd)Anil Madhavapeddy
2003-08-26Fix afsd on architectures that care about alignment. This corrects a problemBob Beck
that would manifest itself as afsd bus erroring on startup. Tested on sparc64 and again on i386, Ok hin@
2003-08-26bitgarbage to the recycle binHenning Brauer
2003-08-25rename struct dinode to ufs1_dinode. clears the namespace and makesTed Unangst
way for some future work. no function changes yet. help testing otto@ and markus@
2003-08-25string shitHenning Brauer
ok markus@
2003-08-25protosTheo de Raadt
2003-08-23oops, if file is not on ftp server with PKG_PATH, check installed too.Ted Unangst
should resolve han boetes's problem.
2003-08-22Don't age non-gateway host routes. NetBSD PR bin/22568 from Andrew WhiteJun-ichiro itojun Hagino
2003-08-21die - regenerated during buildHenning Brauer
noriced by theo
2003-08-21New 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-21print the operating system of TCP SYN packets with the -o optionMike Frantzen
2003-08-21stuff needed for passive OS fingerprinting PF rulesMike Frantzen
2003-08-21thank you, cvs, for re-adding files that were removed on purposeHenning Brauer
2003-08-21sync MANUALFILESHenning Brauer
2003-08-21we have our own oneHenning Brauer
2003-08-21apache 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.hHenning Brauer
2003-08-21fixHenning Brauer
2003-08-21mergeHenning Brauer
2003-08-21mergeHenning Brauer
2003-08-21import apache 1.3.28 and mod_ssl 2.8.15Henning Brauer
2003-08-20Convert from select to poll; based on a patch from deraadt@Todd C. Miller
OK deraadt@
2003-08-19use poll instead; millert fgsch okTheo de Raadt
2003-08-19fix tv_usec setting. deraadtJun-ichiro itojun Hagino
2003-08-19one missing freeifaddrsJun-ichiro itojun Hagino
2003-08-19rewrite SIOCGIFCONF into getifaddrs. deraadt okJun-ichiro itojun Hagino
2003-08-19very hairy modifications for dynamic fd_set handling. dynamic rpc fd_set'sTheo de Raadt
are just nasty; ok matthieu
2003-08-19use poll instead of select; dhartmei okTheo de Raadt
2003-08-19convert to poll; ok dhartmeiTheo de Raadt
2003-08-19convert to poll; ok dhartmeiTheo de Raadt
2003-08-18Call tzset() to stash the current timezone before we chroot.Todd C. Miller
OK deraadt@ and avsm@
2003-08-18fix two bugs found by ben goren. -a should only look at installedTed Unangst
packages, and if we build a URL from PKG_PATH don't treat it like a filename. ok espie@
2003-08-18err/warn \n cleanupHans Insulander
From Tom Cosgrove via deraadt@
2003-08-18Simple string cleanup.Hans Insulander
ok todd@
2003-08-17damn liesHenning Brauer
2003-08-16more errx/warnx style \n errors; tom.cosgrove@arches-consulting.comTheo de Raadt