summaryrefslogtreecommitdiff
path: root/time/sunbird/patches/patch-br
blob: 526d4d92454c4085f43e0031afaa7d14335f2959 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
$NetBSD: patch-br,v 1.1.1.1 2006/02/05 21:56:26 ghen Exp $

--- nsprpub/pr/src/misc/prnetdb.c.orig	2006-02-02 16:57:57.000000000 +0100
+++ nsprpub/pr/src/misc/prnetdb.c
@@ -2110,7 +2110,17 @@ PR_IMPLEMENT(PRAddrInfo *) PR_GetAddrInf
          */
         hints.ai_socktype = SOCK_STREAM;
 
+/* NetBSD >= 2.99.9 has a thread-safe resolver */
+#if defined(__NetBSD_Version__) && __NetBSD_Version__ < 299000900
+	LOCK_DNS();
+#endif
+
         rv = GETADDRINFO(hostname, NULL, &hints, &res);
+
+#if defined(__NetBSD_Version__) && __NetBSD_Version__ < 299000900
+	UNLOCK_DNS();
+#endif
+
         if (rv == 0)
             return (PRAddrInfo *) res;