FS-5819: don't assigne variable to itself

This commit is contained in:
Michael Jerris 2013-09-30 13:28:47 -04:00
parent 78e04cd322
commit 2f556d4802
1 changed files with 2 additions and 1 deletions

View File

@ -3303,7 +3303,8 @@ tport_t *tport_tsend(tport_t *self,
self = primary->pri_primary; self = primary->pri_primary;
} }
else if (tport_is_secondary(self) && tport_is_clear_to_send(self)) { else if (tport_is_secondary(self) && tport_is_clear_to_send(self)) {
self = self; /* self = self; */
;
} }
/* /*
* Try to find an already open connection to the destination, * Try to find an already open connection to the destination,