Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | have _THREAD_PRIVATE_MUTEX for DNS/YP/hosts lookup. | 2002-07-24 | 1 | -3/+16 | |
| | |||||
* | correct check for strchr() failure in EXAMPLE; from pinskia@physics.uc.edu | 2002-07-20 | 1 | -2/+2 | |
| | |||||
* | ansi | 2002-07-20 | 31 | -166/+81 | |
| | |||||
* | typo | 2002-07-18 | 1 | -2/+2 | |
| | |||||
* | ansi | 2002-07-16 | 1 | -4/+2 | |
| | |||||
* | suppress ctags warnings; millert@ ok | 2002-07-15 | 1 | -2/+2 | |
| | |||||
* | indent, and double free fix; millert ok | 2002-07-14 | 1 | -10/+12 | |
| | |||||
* | Add a missing check for fts_alloc() returning NULL; Chad Loder | 2002-07-12 | 1 | -3/+4 | |
| | |||||
* | Back out revision 1.3; we return EWOULDBLOCK on lock failure, not EAGAIN. | 2002-07-11 | 1 | -9/+2 | |
| | |||||
* | we can live very well w/ MI ffs() | 2002-07-08 | 2 | -62/+2 | |
| | |||||
* | Use qsort() instead of mergesort() since the latter can fail due | 2002-07-08 | 1 | -2/+18 | |
| | | | | | to malloc(). opendir() requires a stable sort so we rig the compare routine to never return 0. From Lars J. Buitinck | ||||
* | offload the arguments from the stack before performing | 2002-07-08 | 1 | -9/+7 | |
| | | | | | | the copying, initial idea is from freebsd (not fully implemented there, apparently). this also makes bcopy/memcpy a tiny little bit faster. | ||||
* | Remove kernel support for NTP. ok deraadt@ and tholo@ | 2002-07-06 | 3 | -10/+3 | |
| | |||||
* | KNF | 2002-07-06 | 3 | -64/+67 | |
| | |||||
* | cope better if realloc fails; better fix than cloder@acm.org | 2002-07-06 | 1 | -1/+2 | |
| | |||||
* | more refinement | 2002-07-05 | 1 | -9/+10 | |
| | |||||
* | missing priority argument in example; ok millert@ | 2002-07-02 | 1 | -2/+2 | |
| | |||||
* | more type pedant | 2002-07-01 | 1 | -2/+2 | |
| | |||||
* | lint clean (and don't mixup signed/unsigned). from martin husemann | 2002-07-01 | 1 | -12/+12 | |
| | |||||
* | need string.h | 2002-07-01 | 1 | -1/+2 | |
| | |||||
* | Disc -> Disk for EDQUOT; now the error and log messages that appear when | 2002-07-01 | 1 | -2/+2 | |
| | | | | quotas are exceeded are consistent. deraadt@ ok | ||||
* | Fix strnvis(): don't truncate unnecessarily, set the return value correctly | 2002-07-01 | 2 | -17/+31 | |
| | | | | if we had to truncate, and don't NUL-terminate if size == 0. | ||||
* | typo | 2002-07-01 | 1 | -2/+2 | |
| | |||||
* | make more pedantic check on strtoul. from deraadt, sync w/kame | 2002-07-01 | 1 | -8/+12 | |
| | |||||
* | indent | 2002-07-01 | 1 | -1/+2 | |
| | |||||
* | correct port range check. from deraadt. sync w/kame. bind-bugs have already notified. | 2002-06-29 | 1 | -2/+3 | |
| | |||||
* | Replace strtou?q() with the more standard strtou?ll(), using weak | 2002-06-29 | 5 | -42/+108 | |
| | | | | aliases to fake up strtou?q(). espie@ OK. | ||||
* | minor bump for readpassphrase() flag addition | 2002-06-28 | 1 | -1/+1 | |
| | |||||
* | Add RPP_STDIN flag which acts as the converse of RPP_REQUIRE_TTY. | 2002-06-28 | 2 | -6/+11 | |
| | | | | Based on a patch from Brett Eldridge. | ||||
* | Lies, damn lies and getcap(3). The description for cgetclose() was | 2002-06-28 | 1 | -4/+12 | |
| | | | | | | completely wrong and has apparently caused people to believe that cgetclose() frees memory allocated by cgetent() which is *not* the case. | ||||
* | %u | 2002-06-27 | 1 | -3/+3 | |
| | |||||
* | KNF | 2002-06-27 | 1 | -2/+2 | |
| | |||||
* | note Supplementary group IDs remain unchanged; ok deraadt@ tholo@ | 2002-06-27 | 1 | -2/+4 | |
| | |||||
* | %u and uid/gid | 2002-06-27 | 1 | -4/+4 | |
| | |||||
* | %d -> %u. mostly in #ifdef DEBUG. | 2002-06-27 | 5 | -34/+34 | |
| | |||||
* | %d/%u mixup (in #ifdef DEBUG) | 2002-06-27 | 2 | -5/+5 | |
| | |||||
* | ntohs() returns unsigned value | 2002-06-27 | 1 | -2/+2 | |
| | |||||
* | correct bad practice in the code - it uses two changing variables | 2002-06-26 | 2 | -26/+22 | |
| | | | | | | | to manage buffer (buf and buflen). we eliminate buflen and use fixed point (ep) as the ending pointer. this fix is NOT critical. | ||||
* | avoid remote buffer overrun on hostbuf[]. From: Joost Pol <joost@pine.nl> | 2002-06-26 | 2 | -43/+33 | |
| | | | | | | | | correct bad practice in the code - it uses two changing variables to manage buffer (buf and buflen). we eliminate buflen and use fixed point (ep) as the ending pointer. this fix is critical. | ||||
* | uid_t is unsigned | 2002-06-23 | 2 | -4/+4 | |
| | |||||
* | use strtok_r() instead of strtok(); millert ok | 2002-06-22 | 1 | -15/+16 | |
| | |||||
* | Close log file when leaving syslog_r(). deraadt@ ok | 2002-06-20 | 1 | -1/+5 | |
| | |||||
* | Update license based on lite2 version | 2002-06-19 | 1 | -14/+30 | |
| | |||||
* | Rewrite to get proper Copyright. | 2002-06-18 | 1 | -15/+40 | |
| | | | | | | Should even be slightly better than the old one. Checked and fixed by miod@, my initial version was not 100% right (writing m68k loops blindly doesn't always work). | ||||
* | make fabs use asm, and license repair | 2002-06-17 | 1 | -6/+32 | |
| | |||||
* | match man page to source; from Jean-Francois Brousseau <krapht@secureops.com> | 2002-06-16 | 1 | -3/+3 | |
| | | | | ok deraadt@ | ||||
* | spelling; from Brian Poole <raj@cerias.purdue.edu> | 2002-06-14 | 2 | -4/+4 | |
| | |||||
* | __indr_reference() and the definition in the same compilation unit are | 2002-06-12 | 8 | -56/+32 | |
| | | | | | | | a bad idea. use __weak_alias(), but for now put the definition at the bottom, since AUX_FUNC is not properly propagated to the weak definition, and will cause grief to the linker. should fix vax. tested by hin@ via LDSTATIC=-static, millert@ ok. | ||||
* | Document kern.userasymcrypto | 2002-06-11 | 1 | -1/+8 | |
| | |||||
* | random cleanup that's cheaper to commit than to remove from my tree. | 2002-06-11 | 1 | -2/+2 | |
| |