summaryrefslogtreecommitdiff
path: root/usr.sbin
AgeCommit message (Collapse)Author
2003-03-27Add -q to the getopt() string and document it; Brian GinsbachTodd C. Miller
2003-03-27Fix a bug introduced when getopt() support was added; -h takes anTodd C. Miller
argument but -r does not. These were reversed in the getopt() string. Fix from Carson Harding
2003-03-25Fix last commit; to emulate setuid daemon + PRIV_END we need toTodd C. Miller
set the real & effective uids to the calling user and the saved uid to daemon. Fixes a problem where lpr could not print files that were not world-readable.
2003-03-23sync FILES section with realityHenning Brauer
2003-03-23correct URL to apache online docsHenning Brauer
2003-03-22.Nd shouldn't end with a periodDavid Krause
ok jmc@
2003-03-22missing space between macro argument and commaDavid Krause
ok jmc@
2003-03-21Fix default facility when none is specified (should be LOG_USER,Todd C. Miller
was LOG_UUCP due to a bug); Javier Kohen
2003-03-20replace some .Pp inside .Bd -literal block with empty lineDavid Krause
new sentence, new line fix login.conf indentation ok jmc@
2003-03-20duplicate word: to toDavid Krause
spelling fix: chosen ok jakob@
2003-03-19use RSA key blinding code from mod_ssl 2.8.13. differences to our own fixHenning Brauer
that was already in are purely cosmetical, but this will make the future merge of mod_ssl 2.8.13 easier.
2003-03-19Fix parsing of the leases file.Kenneth R Westerback
src & dst parameters to the only remaining strncpy() in the file were reversed. Use strlcpy() instead, with parameters in correct order. ok millert@.
2003-03-18missed a RUNDIR -> /var/runAnil Madhavapeddy
2003-03-18- expand DBDIR, ETCDIR, RUNDIR to the actual directories to makeAnil Madhavapeddy
the man pages easier to read - add dhcp(8) to SEE ALSO in dhcpd(8) - rearrange SEE ALSO in section order as well as alphabetical in dhcpd(8) ok millert@, todd@
2003-03-18spelling typos/errorsDavid Krause
ok miod@ jmc@
2003-03-18duplicate words: and and, the theDavid Krause
ok miod@ jmc@
2003-03-18xon/xoff -> Xon/Xoff;Jason McIntyre
IETF ipng -> IETF IPng; NSFNet -> NSFNET; courtesy NetBSD (Igor Sobrado) ok miod@
2003-03-18ip address -> IP address;Jason McIntyre
rtadvd.conf(5): positve -> positive; ok miod@
2003-03-18small typos;Jason McIntyre
ok miod@
2003-03-17arp did not long-align sockaddrs in routing messages. This led toHenric Jungheim
garbage being sent to the kernel on sparc64. Problem reported and fix tested by Doug Winter (thanks). ok jason@ and millert@
2003-03-16nuber -> number;Jason McIntyre
from NetBSD (Igor Sobrado)
2003-03-15recoginzed -> recognized;Jason McIntyre
elimininating -> eliminating; typos courtesy NetBSD (Igor Sobrado)
2003-03-15missing ap_server_strip_chroot()Henning Brauer
2003-03-15Use strlcpy() instead of pre-checking the src len and using strcpy()Todd C. Miller
2003-03-14correct use of sizeof.Jun-ichiro itojun Hagino
2003-03-14add missing ND option length validation. from kameJun-ichiro itojun Hagino
2003-03-14document the -n flag (dry-run)Jason McIntyre
remove info about non-existent -f flag update usage() fixes PR 2541; checked by tedu - thanks. i owe you a favor :) ok millert@
2003-03-14removed references to non-existent radius.conf(5);Jason McIntyre
from Adrian Close; fixes PR 2558; ok millert@
2003-03-14typos;Jason McIntyre
audio(4): ok naddy@ cardbus(4): ok deraadt@
2003-03-14RSA blinding for private keys here too.Hakan Olsson
2003-03-14Add RSA blinding for private keys. markus@ ok.Hakan Olsson
2003-03-13Use strdup() instead of doing it by hand; deraadt@ OKTodd C. Miller
2003-03-13more strlcpy; ok beck, and others pointed out a glitchTheo de Raadt
2003-03-13lots of sprintf -> snprintf and strcpy -> strlcpy; checked by teduTheo de Raadt
2003-03-12less sprintfTheo de Raadt
2003-03-12Make config -e work correctly on the various m68k platforms, by handlingMiod Vallat
all the various a.out MAGIC correctly, and handling the mvme68k case where kernel_text starts after the a.out header. No functional change, no regression on other a.out arches (i386 and vax). ok deraadt@ henning@
2003-03-12more .LiTheo de Raadt
2003-03-12Move range sanity check out of get_number() and into get_range() sinceTodd C. Miller
it was causing problems with symbolic names (and get_range() is really where it belongs anyway). Also allow a range to be followed by a ',' as pointed out by mpech@
2003-03-11Catch more syntax errors that were previously ignored. I've rewrittenTodd C. Miller
get_number() to be more careful about what it accepts and to take a string of terminating characters so it knows what is valid. Also added a range check so that ranges like "60-50" where the first number is greater than the second are now flagged. Thanks to mpech@ for testing finding ways to abuse the parser :-)
2003-03-11removed .Ic's which were giving postscript trouble;Jason McIntyre
ok deraadt@
2003-03-11spellingDavid Krause
ok millert@
2003-03-11Make lpr and lprm setuid root but drop to daemon very early.Todd C. Miller
Functionally this is the same as when lpr and lprm were setuid daemon but the executable are now owned by root which is safer. deraadt@ OK
2003-03-11$OpenBSD$David Krause
ok henning@
2003-03-11groupmod modifies groups, it doesn't add themTed Unangst
ok millert@
2003-03-10these pages all had bad section numbers in the .Xr's;Jason McIntyre
lots of help and ok millert@
2003-03-10Log that cron started up after we detach from the controlling terminalTodd C. Miller
and dup fds to /dev/null, not before. This may fix a possible race when cron is started as the last thing in /etc/rc.
2003-03-10Change a e_username to e_cmd.Todd C. Miller
2003-03-10Back out changes to get_number() that I didn't intend to commit.Todd C. Miller
2003-03-10Do the check for missing command before the un_getchar(); otherwiseTodd C. Miller
the error messages will say line 0. This is because un_getchar('\n', file) will decrement the line count. Noticed by mpech@
2003-03-09Fix error line number reporting for syntax errors (noticed by mpech@).Todd C. Miller
This is relatively tricky due to the way EOF is overloaded. Seems to give a correct line number for all errors I threw at it.