Age | Commit message (Collapse) | Author | |
---|---|---|---|
2003-03-11 | Catch more syntax errors that were previously ignored. I've rewritten | Todd 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-11 | removed .Ic's which were giving postscript trouble; | Jason McIntyre | |
ok deraadt@ | |||
2003-03-11 | spelling | David Krause | |
ok millert@ | |||
2003-03-11 | Make 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-11 | groupmod modifies groups, it doesn't add them | Ted Unangst | |
ok millert@ | |||
2003-03-10 | these pages all had bad section numbers in the .Xr's; | Jason McIntyre | |
lots of help and ok millert@ | |||
2003-03-10 | Log that cron started up after we detach from the controlling terminal | Todd 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-10 | Change a e_username to e_cmd. | Todd C. Miller | |
2003-03-10 | Back out changes to get_number() that I didn't intend to commit. | Todd C. Miller | |
2003-03-10 | Do the check for missing command before the un_getchar(); otherwise | Todd 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-09 | Fix 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. | |||
2003-03-09 | Catch lines w/o EOF. Previously they were silently ignored. | Todd C. Miller | |
2003-03-09 | bad license | Matthieu Herrb | |
2003-03-09 | .Dd Month day, year | David Krause | |
ok jmc@ | |||
2003-03-09 | fix wording of sentence. | Brad Smith | |
deraadt@ ok | |||
2003-03-09 | As pointed out by Perry, mailwrapper is never invoked directly, | Todd C. Miller | |
err/warn will show names like sendmail, mailq, etc which is confusing. However, prefixing "mailwrapper" to the string passed to err/warn is ugly too. The least evil alternative seems to be to stash the value of __progname for checking and assign "mailwrapper" to __progname. | |||
2003-03-08 | Honor the :sh: flag in the local printcap for remote printers too | Todd C. Miller | |
instead of forcing the user to use lpr's "-h" flag. Adapted from a patch in FreeBSD from Scott James Remnant. | |||
2003-03-08 | Bleah, someone beat me to this but I have some minor chages | Todd C. Miller | |
2003-03-08 | fix err/errx uses; andrushock@korovino.net | Theo de Raadt | |
2003-03-08 | fix fdformat usage(). Ok deraadt@ | Matthieu Herrb | |
2003-03-08 | Talk about chroot defaults, remove Linux note. | Cedric Berger | |
ok jakob@ jmc@ | |||
2003-03-07 | spelling errors/typos | David Krause | |
ok jmc@ | |||
2003-03-06 | date should be written formally: .Dd Month day, year | David Krause | |
ok henning@ jmc@ | |||
2003-03-05 | delete blank lines | Theo de Raadt | |
2003-03-05 | - double spaces killed | Jason McIntyre | |
- new sentence, new line - grammar ok deraadt@ | |||
2003-03-05 | knf | Theo de Raadt | |
2003-03-05 | jmc wrote a combination man page that covers all openssl(1) functionality, | Theo de Raadt | |
based on the pod files from openssl. This may need by-hand updating once in a while, but at least now people can read a real man page instead of the mess that the openssl team provides us with. | |||
2003-03-05 | update to BIND 9.2.2-release. ok millert@ | Jakob Schlyter | |
2003-03-05 | delete bogus debug msg | Theo de Raadt | |
2003-03-04 | change default config file to /var/named/etc/named.conf. ok millert@ | Jakob Schlyter | |
2003-03-04 | skip this setuid stuff | Theo de Raadt | |
2003-03-04 | Deref the correct passwd pointer in a Debug statement. | Todd C. Miller | |
2003-03-03 | spaces | Theo de Raadt | |
2003-03-03 | ansi, from cloder | Theo de Raadt | |
2003-03-01 | proper notice | Theo de Raadt | |
2003-03-01 | mrouted & friends can now be enabled | Theo de Raadt | |
2003-03-01 | After 2 years, and more than 350 pieces of mail exchanged with "the | Theo de Raadt | |
right people" at Stanford, we finally succeed at getting the parts of the code they wrote to be released under a BSD license. The other components were written by USC and Xerox (who were quick at helping, 5 days and 6 weeks if I recall). Of the ~200 authors we have contacted regarding license issues, this institution has been THE WORST to deal with, and to think -- this is an American University. How far the edifice of educational freedom has fallen.... shame on you Stanford. | |||
2003-03-01 | apparently xerox wrote this snmp stuff | Theo de Raadt | |
2003-02-28 | no need to disable stack-protector on sparc and sparc64 any more. | Artur Grabowski | |
deraadt@ ok. | |||
2003-02-28 | Fix double Debug() usage, for instance, Debug(DPARS|DEXT...) | Mike Pechkin | |
Make sence if debugging. millert@ ok | |||
2003-02-27 | Kill blank line that hoses formatting; jakob@ OK | Todd C. Miller | |
2003-02-27 | make rndc-confgen fail properly. tested by danh@ | Jakob Schlyter | |
2003-02-27 | Fix parsing of '0' and non-alphanumerics in steps; found by mpech@ | Todd C. Miller | |
2003-02-26 | copyright added; | Jason McIntyre | |
(c) jbm@ thanks to jbm@ for helping clear this up | |||
2003-02-26 | Fix a bug we found during an audit of BIND9. This bug does not affect | Chad Loder | |
OpenBSD but it could affect platforms which define ISC_PLATFORM_NEEDVSNPRINTF. isc_print_snprintf contains a bug where it could read off the end of an argument string for a format specifier like "%.10s", where the .10 indicates precision. Reported to ISC and confirmed as ISC bug #5191. OK jakob@ | |||
2003-02-26 | note manpage addition | Jakob Schlyter | |
2003-02-26 | IPv6 now default | Jakob Schlyter | |
2003-02-26 | listen to IPv6 interfaces by default | Jakob Schlyter | |
2003-02-24 | the the | Theo de Raadt | |