aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ssh.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2011-04-18 15:29:25 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2011-04-18 15:29:25 +0000
commit27344a90fe253957564b04d6eb5c1deb99259400 (patch)
treecbd6c44518c211ecb2d1c12783f503aa91c1c158 /epan/dissectors/packet-ssh.c
parent9739656c717343913a8c519e435434b35de8bb61 (diff)
Removed some unneeded assignments.
Found by clang. svn path=/trunk/; revision=36698
Diffstat (limited to 'epan/dissectors/packet-ssh.c')
-rw-r--r--epan/dissectors/packet-ssh.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ssh.c b/epan/dissectors/packet-ssh.c
index 93d7701a32..d58e6f3137 100644
--- a/epan/dissectors/packet-ssh.c
+++ b/epan/dissectors/packet-ssh.c
@@ -363,7 +363,7 @@ dissect_ssh(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree)
return;
}
- while((remain_length = tvb_reported_length_remaining(tvb,offset))> 0 ) {
+ while(tvb_reported_length_remaining(tvb,offset)> 0 ) {
need_desegmentation = FALSE;
last_offset = offset;
this_number = this_data->counter+number;