summaryrefslogtreecommitdiff
path: root/openbsd-compat/getrrsetbyname.c
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2003-09-08 06:33:33 -0700
committerTim Rice <tim@multitalents.net>2003-09-08 06:33:33 -0700
commit0ac16a449218a88885f7b10bfb706c62e246496a (patch)
tree55fe451a35b7aa39429c11af9279d01e0f9744f0 /openbsd-compat/getrrsetbyname.c
parent167bd9cfef47736fdda2cc428802303d32cce9dc (diff)
[configure.ac openbsd-compat/getrrsetbyname.c] wrap _getshort and
_getlong in #ifndef
Diffstat (limited to 'openbsd-compat/getrrsetbyname.c')
-rw-r--r--openbsd-compat/getrrsetbyname.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/openbsd-compat/getrrsetbyname.c b/openbsd-compat/getrrsetbyname.c
index 3ba54e0da..3f75590e2 100644
--- a/openbsd-compat/getrrsetbyname.c
+++ b/openbsd-compat/getrrsetbyname.c
@@ -130,6 +130,7 @@ static int count_dns_rr(struct dns_rr *, u_int16_t, u_int16_t);
130 * Routines to insert/extract short/long's. 130 * Routines to insert/extract short/long's.
131 */ 131 */
132 132
133#ifndef HAVE__GETSHORT
133static u_int16_t 134static u_int16_t
134_getshort(msgp) 135_getshort(msgp)
135 register const u_char *msgp; 136 register const u_char *msgp;
@@ -139,7 +140,9 @@ _getshort(msgp)
139 GETSHORT(u, msgp); 140 GETSHORT(u, msgp);
140 return (u); 141 return (u);
141} 142}
143#endif
142 144
145#ifndef HAVE__GETLONG
143static u_int32_t 146static u_int32_t
144_getlong(msgp) 147_getlong(msgp)
145 register const u_char *msgp; 148 register const u_char *msgp;
@@ -149,6 +152,7 @@ _getlong(msgp)
149 GETLONG(u, msgp); 152 GETLONG(u, msgp);
150 return (u); 153 return (u);
151} 154}
155#endif
152 156
153int 157int
154getrrsetbyname(const char *hostname, unsigned int rdclass, 158getrrsetbyname(const char *hostname, unsigned int rdclass,