commit | e8904dc5008ef92f0f62391d6557f03f921eeb32 | [log] [tgz] |
---|---|---|
author | Jesper Juhl <jj@chaosbits.net> | Sun Jan 15 19:33:30 2012 +0100 |
committer | Nicholas Bellinger <nab@linux-iscsi.org> | Wed Jan 18 08:35:57 2012 +0000 |
tree | da3cdfc1e0be8166b58649840dac0d1ba0842081 | |
parent | f8d48ae52eeec906d7fb42485eb26a5d305bab0a [diff] |
iscsi-target: Fix up a few assignments A statement such as struct iscsi_node_attrib *na = na = iscsit_tpg_get_node_attrib(sess); has undefined behaviour since there are two assignments to 'na', strictly speaking (the order in which side-effects from the assignments take place is undefined since there's no intervening sequence point), and it looks unintentional in any case. Signed-off-by: Jesper Juhl <jj@chaosbits.net> Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>