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