diff options
author | Christopher Faylor <me@cgf.cx> | 2005-03-09 22:38:09 +0000 |
---|---|---|
committer | Christopher Faylor <me@cgf.cx> | 2005-03-09 22:38:09 +0000 |
commit | 8b7de010ab664867b529415a0167047d1437b883 (patch) | |
tree | 8dceac1c113f68ef7d5b11da89dca770ba1f554f /winsup/cygwin/net.cc | |
parent | fa4b5b03c099874588435898e450f9bd70354bd7 (diff) | |
download | cygnal-8b7de010ab664867b529415a0167047d1437b883.tar.gz cygnal-8b7de010ab664867b529415a0167047d1437b883.tar.bz2 cygnal-8b7de010ab664867b529415a0167047d1437b883.zip |
* net.cc (dup_ent): Revert previous stupid change.
Diffstat (limited to 'winsup/cygwin/net.cc')
-rw-r--r-- | winsup/cygwin/net.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/winsup/cygwin/net.cc b/winsup/cygwin/net.cc index ed52807d6..3fee9eb91 100644 --- a/winsup/cygwin/net.cc +++ b/winsup/cygwin/net.cc @@ -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); } |