| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | query ip6.arpa then ip6.int for IPv6 reverse lookup. follows RFC3152. | 2002-07-29 | 1 | -2/+8 | |
| | | | | | (need some string-manipulation cleanup near here) | ||||
| * | more snprintf and strlcpy; help from millert | 2002-07-25 | 1 | -13/+48 | |
| | | |||||
| * | kill more strcpy | 2002-07-25 | 4 | -16/+15 | |
| | | |||||
| * | cleanup | 2002-07-25 | 1 | -23/+26 | |
| | | |||||
| * | real vfork | 2002-07-25 | 1 | -4/+16 | |
| | | |||||
| * | add *asprintf | 2002-07-24 | 1 | -1/+3 | |
| | | |||||
| * | Document that *printf can return -1 on error. This includes snprintf(), | 2002-07-24 | 1 | -1/+2 | |
| | | | | | though our implementation never does this. | ||||
| * | o Mention that interval timers are cleared (FreeBSD) | 2002-07-24 | 1 | -1/+21 | |
| | | | | | | | | o Mention that _exit(2) should be used to avoid problems with stdio buffers and atexit(3) o Add STANDARDS section OK deraadt@ | ||||
| * | Convert to ANSI function headers and make 'ch' argument int, not char. | 2002-07-24 | 2 | -8/+6 | |
| | | | | | Noticed by deraadt@ | ||||
| * | 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 | |
| | | |||||
