]> sourceware.org Git - newlib-cygwin.git/commitdiff
* net.cc (inet_makeaddr): Revert previous change.
authorChristopher Faylor <me@cgf.cx>
Sat, 24 Nov 2001 17:31:15 +0000 (17:31 +0000)
committerChristopher Faylor <me@cgf.cx>
Sat, 24 Nov 2001 17:31:15 +0000 (17:31 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/net.cc

index 3159fa2cbe9c3ff316b44ec40e971626e9c424f9..636151043bcbf8e9e5e2acd4d2c3f47efbc9c5c3 100644 (file)
@@ -1,3 +1,7 @@
+2001-11-24  Christopher Faylor  <cgf@redhat.com>
+
+       * net.cc (inet_makeaddr): Revert previous change.
+
 2001-11-23  Christopher Faylor  <cgf@redhat.com>
 
        * path.cc (chdir): Allow 'cd /cygdrive'.
index 978872178c2cac6685660017b45df7186b406e5a..62ba3331471a3b8c2e883544babb8f7d323204a6 100644 (file)
@@ -268,7 +268,7 @@ extern "C" struct in_addr
 inet_makeaddr (int net, int lna)
 {
   unsigned long i;
-  static struct in_addr in;    /* Note -- not thread safe! */
+  struct in_addr in;
 
   if (net < IN_CLASSA_MAX)
     i = (net << IN_CLASSA_NSHIFT) | (lna & IN_CLASSA_HOST);
This page took 0.03721 seconds and 5 git commands to generate.