diff options
Diffstat (limited to 'src/lib/libc/net/sethostent.c')
-rw-r--r-- | src/lib/libc/net/sethostent.c | 35 |
1 files changed, 15 insertions, 20 deletions
diff --git a/src/lib/libc/net/sethostent.c b/src/lib/libc/net/sethostent.c index 00f6499695..6f6d0e405a 100644 --- a/src/lib/libc/net/sethostent.c +++ b/src/lib/libc/net/sethostent.c | |||
@@ -1,5 +1,4 @@ | |||
1 | /* $NetBSD: sethostent.c,v 1.4 1995/02/25 06:21:03 cgd Exp $ */ | 1 | /* $OpenBSD: sethostent.c,v 1.9 2005/08/06 20:30:04 espie Exp $ */ |
2 | |||
3 | /* | 2 | /* |
4 | * Copyright (c) 1985, 1993 | 3 | * Copyright (c) 1985, 1993 |
5 | * The Regents of the University of California. All rights reserved. | 4 | * The Regents of the University of California. All rights reserved. |
@@ -12,11 +11,7 @@ | |||
12 | * 2. Redistributions in binary form must reproduce the above copyright | 11 | * 2. Redistributions in binary form must reproduce the above copyright |
13 | * notice, this list of conditions and the following disclaimer in the | 12 | * notice, this list of conditions and the following disclaimer in the |
14 | * documentation and/or other materials provided with the distribution. | 13 | * documentation and/or other materials provided with the distribution. |
15 | * 3. All advertising materials mentioning features or use of this software | 14 | * 3. Neither the name of the University nor the names of its contributors |
16 | * must display the following acknowledgement: | ||
17 | * This product includes software developed by the University of | ||
18 | * California, Berkeley and its contributors. | ||
19 | * 4. Neither the name of the University nor the names of its contributors | ||
20 | * may be used to endorse or promote products derived from this software | 15 | * may be used to endorse or promote products derived from this software |
21 | * without specific prior written permission. | 16 | * without specific prior written permission. |
22 | * | 17 | * |
@@ -33,30 +28,30 @@ | |||
33 | * SUCH DAMAGE. | 28 | * SUCH DAMAGE. |
34 | */ | 29 | */ |
35 | 30 | ||
36 | #if defined(LIBC_SCCS) && !defined(lint) | ||
37 | #if 0 | ||
38 | static char sccsid[] = "@(#)sethostent.c 8.1 (Berkeley) 6/4/93"; | ||
39 | #else | ||
40 | static char rcsid[] = "$NetBSD: sethostent.c,v 1.4 1995/02/25 06:21:03 cgd Exp $"; | ||
41 | #endif | ||
42 | #endif /* LIBC_SCCS and not lint */ | ||
43 | |||
44 | #include <sys/param.h> | 31 | #include <sys/param.h> |
45 | #include <netinet/in.h> | 32 | #include <netinet/in.h> |
46 | #include <arpa/nameser.h> | 33 | #include <arpa/nameser.h> |
47 | #include <netdb.h> | 34 | #include <netdb.h> |
48 | #include <resolv.h> | 35 | #include <resolv.h> |
49 | 36 | ||
37 | #include "thread_private.h" | ||
38 | |||
50 | void | 39 | void |
51 | sethostent(stayopen) | 40 | sethostent(int stayopen) |
52 | { | 41 | { |
42 | struct __res_state *_resp = _THREAD_PRIVATE(_res, _res, &_res); | ||
43 | |||
44 | if (_res_init(0) == -1) | ||
45 | return; | ||
53 | if (stayopen) | 46 | if (stayopen) |
54 | _res.options |= RES_STAYOPEN | RES_USEVC; | 47 | _resp->options |= RES_STAYOPEN | RES_USEVC; |
55 | } | 48 | } |
56 | 49 | ||
57 | void | 50 | void |
58 | endhostent() | 51 | endhostent(void) |
59 | { | 52 | { |
60 | _res.options &= ~(RES_STAYOPEN | RES_USEVC); | 53 | struct __res_state *_resp = _THREAD_PRIVATE(_res, _res, &_res); |
61 | _res_close(); | 54 | |
55 | _resp->options &= ~(RES_STAYOPEN | RES_USEVC); | ||
56 | res_close(); | ||
62 | } | 57 | } |