ITS#897 Internal connection that is closed on one end and about to

be closed on other end could get reused by a new internal connection.
This commit is contained in:
Mark Adamson 2000-12-08 23:23:08 +00:00
parent 466ff113e1
commit ef2dd4bcb0

View File

@ -57,7 +57,8 @@ int lutil_pair( ber_socket_t sds[2] )
return rc;
}
sds[0] = sds[1] = sd;
sds[0] = sd;
sds[1] = dup( sds[0] );
return 0;
#endif
}