Age | Commit message (Collapse) | Author | |
---|---|---|---|
2008-03-12 | mostly stylistic - always print the client host name in snmpe error | Reyk Floeter | |
messages and make sure that the host string is initialized. | |||
2008-03-12 | if (class != BER_CLASS_UNIVERSAL || type != BER_TYPE_SEQUENCE) | Claudio Jeker | |
not if (class != BER_CLASS_UNIVERSAL && type != BER_TYPE_SEQUENCE) the class and type need to be of correct. OK reyk@ | |||
2008-03-12 | SNMP has a restricted BER encoding especially all encodings use the | Claudio Jeker | |
definite-length from. So bail out with an error if this is not the case. OK cloder@, reyk@ cvs: ---------------------------------------------------------------------- | |||
2008-03-12 | Return an error if more data is requested even though the buffer is empty. | Claudio Jeker | |
Fixes an infinite loop seen by cloder@. OK cloder@, reyk@ | |||
2008-03-12 | nuke unused variable. | Pierre-Yves Ritschard | |
2008-03-11 | oops | Marc Espie | |
2008-03-10 | print better error message if child dies... with extra dark magic to grab | Marc Espie | |
signal names from POSIX. | |||
2008-03-10 | provide a partial implementation of the HOST-RESOURCES-MIB. this implements | David Gwynne | |
the hrStorage part, which is enough to see how much space is used on your filesystems. makes my nms happy. ok reyk@ | |||
2008-03-10 | Fix a null deref in link_state, which happens on config | Marco Pfatschbacher | |
files which refer to undeclared states. popfile() needs to be called later. Found by and OK cnst@ | |||
2008-03-09 | tweak previous; | Jason McIntyre | |
2008-03-08 | rename forced to defines | Marc Espie | |
2008-03-08 | better -q: mention once, and it speeds up (assumes normal files haven't | Marc Espie | |
changed), but still checks config files. Use twice, and wipe your config out as well. | |||
2008-03-08 | tweak messages mentioning checksums so that they mention checksums, not | Marc Espie | |
specifics like md5, since that's likely to change. | |||
2008-03-08 | let GetOpt count how many times it sees an option, removes special case | Marc Espie | |
for -v, and allow other fun possibilities. | |||
2008-03-08 | avoid request for input if lines are set to zero | Simon Bertrang | |
ok deraadt@, sthen@ | |||
2008-03-04 | Since the back-off goes 5,10,20,40 seconds, allow the retry timeout to | Chris Kuethe | |
increase to 80 and then 160sec before failing. Helps when doing big updates with "pkg_add -ui" ok espie, deraadt | |||
2008-03-03 | tweak previous; | Jason McIntyre | |
2008-03-03 | log a different notification message when the tcp check times out. | Reyk Floeter | |
also adjust the documentation a little bit to decrease confusion about the check timeout. From pyr@ ok deraadt@ | |||
2008-03-03 | fix utterly confusing message for updates. | Marc Espie | |
okay bernd@/deraadt@ | |||
2008-03-03 | Inherit global table options. | Reyk Floeter | |
From Armin Wolfermann ok pyr@ deraadt@ | |||
2008-03-03 | The fix removes the replacement of se_key from relay_dns_request. se_key | Reyk Floeter | |
is assigned a random value for and id in relay_udp_server before where the SPLAY_INSERT is performed, se_outkey is set to the return id rather than the rl_dskkey. The relay_dns_request which occurs after the SPLAY_INSERT no longer updates se_outkey, or se_key. The request is sent using the random value already placed into the se_key when the session is created. From Nigel Taylor ok pyr@ deraadt@ | |||
2008-03-03 | improve the compare function of addresses respecting the ports; this will fix | Reyk Floeter | |
the tree lookups in some cases. From Nigel Taylor ok pyr@ deraadt@ | |||
2008-03-02 | fix pkg_add -r -B | Marc Espie | |
problem noticed by winiger@ | |||
2008-03-02 | fix bugs formatting | Marc Espie | |
2008-03-02 | introduce a isc_random_uniform() function to return a uniformly distributed | Damien Miller | |
number 0 < x <= upper_bound and use it to correct the last tiny bias in the shuffle initialisation feedback & ok deraadt@ | |||
2008-03-02 | set the refid for v4 queries too. this allows sensor-driven ntpd to says its | Chris Kuethe | |
reference is "HARD" (or "GPS", "UMBG", "UDCF" ... in theory) rather than "^@^@^@^@" "why not" henning@ | |||
2008-03-02 | another extra endpwent() not needed | Theo de Raadt | |
2008-03-02 | Pass a buffer size to InterpretArg() and do not let it overflow it, saves | Miod Vallat | |
propolice some work in command_Expand_Interpret(). Inspired by FreeBSD; ok deraadt@ | |||
2008-03-02 | PCI devices are specified by bus:dev:func, not dev:bus:func. Adjust usage | Mark Kettenis | |
and man page. | |||
2008-02-29 | no , at end of enum; tobiasu@tmux.org | Theo de Raadt | |
2008-02-29 | replacement algorithm. initialize a 64K-short buffer using Durstenfeld | Theo de Raadt | |
shuffle. Upon allocation, swap-permute the new value to a random slot in the 0..32K-1 th entry of the buffer as we move forward, ensuring randomness but also satisfying the non-repeating property we need. Inspired by Dillon's implementation for ip id. We believe this is easier to read though, initializes with less bias and wins speed tests. Thanks a lot to mcbride and djm for doing a bunch of statistical and speed analysis, and comments from nordin ok jakob djm mcbride | |||
2008-02-27 | Unbreak parser by initializing topfile correctly. | Marco Pfatschbacher | |
I got fooled by patch(1). Sorry. | |||
2008-02-27 | Unbreak parser by initializing topfile correctly. | Marco Pfatschbacher | |
I got fooled by patch(1). Sorry. Found by and OK thib@. | |||
2008-02-27 | Have popfile() also close the main config file, | Marco Pfatschbacher | |
but only do the final popfile call after yyparse() is done. This also fixes config reload on SIGHUP for some daemons. Spotted by otto@. OK deraadt@ | |||
2008-02-26 | Fix memory leak in the parser. Found by Matthew Dempsky but using the more | Claudio Jeker | |
common way to clear the TAILQ. OK thib@ | |||
2008-02-26 | Ignore and drop path attributes with a type code of 0 instead of sending an | Claudio Jeker | |
error back. This increases robustness without causing any issues. The RFC does not forbid the use of 0 in the type code but it is not explicitly allowed and the type code list at IANA does not mention 0 at all. OK henning@ | |||
2008-02-26 | Don't pass quick when tagging, so the tag can be used outside | Henning Brauer | |
the ftp-proxy anchor. Exotic setups with route-to etc. can be implemented this way. from camield, ok reyk beck canacar and manpage polished by jmc | |||
2008-02-26 | Have popfile() also close the main config file, | Marco Pfatschbacher | |
but only do the final popfile call after yyparse() is done. This also fixes config reload on SIGHUP for some daemons. Spotted by otto@. OK deraadt@ | |||
2008-02-26 | Allow a range of baud rates in a manner similiar to tip/cu, | Jonathan Gray | |
fixes PR 5734 as tested by Sergey Prysiazhnyi <apelsin@atmnis.com>. Fix suggested by and ok deraadt@, "diff is correct" miod@ | |||
2008-02-25 | uninitialized variable needs zero'ing, ok kettenis | Theo de Raadt | |
2008-02-25 | document the basic algorithms used by pkg*. | Marc Espie | |
Actually a must-read for any porter who plays with non-trivial updates. | |||
2008-02-24 | Add missing space when printing ext. communities. | Claudio Jeker | |
2008-02-24 | taht -> that | Marc Balmer | |
2008-02-24 | fix a type, taht -> that. | Marc Balmer | |
2008-02-23 | correct pathnames reported; pr#5742 | Theo de Raadt | |
2008-02-22 | Allow multiple NUL characters within string-valued properties (but add an | Mark Kettenis | |
XXX saying that this may not exactly be what we want). This makes the output on macppc look much saner. ok fgsch@, beck@ | |||
2008-02-22 | remove comma from type list, add missing semicolon for consistency | Simon Bertrang | |
OK claudio@ | |||
2008-02-20 | set globalnl to vnodenl in filemode() so we access the right | Thordur I. Bjornsson | |
thing in the KGET() macros. Fixes a segfault when pstat is called with '-vT'; ok miod@,krw@,beck@ | |||
2008-02-16 | sort flags in both synopsis and usage | Igor Sobrado | |
ok reyk@ | |||
2008-02-14 | backout the change to make arp(8) default to -an; | Thordur I. Bjornsson | |
Remove that blurp from the man page also. requested by deraadt@; |