diff options
author | deischen <deischen@FreeBSD.org> | 2006-02-27 22:08:16 +0000 |
---|---|---|
committer | deischen <deischen@FreeBSD.org> | 2006-02-27 22:08:16 +0000 |
commit | 2a2559a103e853552bf162079b75f0af0f21e574 (patch) | |
tree | fdfb388ac0ce343027a99be467a1f57ff43e6ff7 /lib/libc/net/res_comp.c | |
parent | cf459941f1e991341d0048c26be0e51d3d67a066 (diff) | |
download | FreeBSD-src-2a2559a103e853552bf162079b75f0af0f21e574.zip FreeBSD-src-2a2559a103e853552bf162079b75f0af0f21e574.tar.gz |
Correct a comment.
Staticize two tables thare are not visible in <resolv.h>
and which are also local in Solaris' libresolv.
Remove two functions that are not referenced in libc nor
anywhere else I can find, not visible in <resolv.h> and
which are also local in Solaris libresolv.
Diffstat (limited to 'lib/libc/net/res_comp.c')
-rw-r--r-- | lib/libc/net/res_comp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/net/res_comp.c b/lib/libc/net/res_comp.c index 2e22483..0739188 100644 --- a/lib/libc/net/res_comp.c +++ b/lib/libc/net/res_comp.c @@ -246,10 +246,10 @@ res_dnok(dn) #ifdef BIND_4_COMPAT /* * This module must export the following externally-visible symbols: - * ___putlong - * ___putshort - * __getlong - * __getshort + * __putlong + * __putshort + * _getlong + * _getshort * Note that one _ comes from C and the others come from us. */ void __putlong(u_int32_t src, u_char *dst) { ns_put32(src, dst); } |