]> sourceware.org Git - newlib-cygwin.git/commitdiff
* net.cc (dup_ent): Revert previous stupid change.
authorChristopher Faylor <me@cgf.cx>
Wed, 9 Mar 2005 22:38:09 +0000 (22:38 +0000)
committerChristopher Faylor <me@cgf.cx>
Wed, 9 Mar 2005 22:38:09 +0000 (22:38 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/net.cc

index d664f1c2d46219ed436d34b0b2ef385b0747d137..a7c6e409f023f78bc710630ae09bcde233891899 100644 (file)
@@ -4,6 +4,10 @@
        (handle_sigprocmask): Ditto.  Check "how" for being a valid "how" value.
        Fix call order in case of wrong "how" value.
 
+2005-03-09  Christopher Faylor  <cgf@timesys.com>
+
+       * net.cc (dup_ent): Revert previous stupid change.
+
 2005-03-09  Christopher Faylor  <cgf@timesys.com>
 
        * net.cc (dup_ent): Avoid dereferencing a null pointer in a debug_printf.
index ed52807d60482c2bdda36e3cd4323c9a4cbe747a..3fee9eb91fcde3cee803a428cc64a419a3a8063a 100644 (file)
@@ -389,7 +389,7 @@ dup_ent (void *old, void *src0, struct_type type)
   if (old)
     {
       debug_printf ("freeing old %sent structure \"%s\" %p\n", entnames[type],
-                   old ? ((unionent *) old)->name : "<null!>", old);
+                   ((unionent *) old)->name, old);
       free (old);
     }
 
This page took 0.035273 seconds and 5 git commands to generate.