aboutsummaryrefslogtreecommitdiffstats
path: root/file.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2009-07-06 13:53:01 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2009-07-06 13:53:01 +0000
commit5afe4057173c0ca3d3bd6c0f3536e3190fc4a700 (patch)
treeaad71e92ec1e1dbb3e2bd1b0c72f42c7c09b420a /file.c
parent907673a91cd68c25ed7032b1eeb845af5da017df (diff)
Removed an incorrect optimalization for invalidating packet in row 0.
svn path=/trunk/; revision=28950
Diffstat (limited to 'file.c')
-rw-r--r--file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file.c b/file.c
index 8e6a52ac22..71ac4d1ba9 100644
--- a/file.c
+++ b/file.c
@@ -1863,7 +1863,7 @@ rescan_packets(capture_file *cf, const char *action, const char *action_item,
/* Either the frame that was selected passed the filter, or we've
found the nearest displayed frame to that frame. Select it, make
it the focus row, and make it visible. */
- if (redissect && selected_row == 0) {
+ if (selected_row == 0) {
/* Set to invalid to force update of packet list and packet details */
cf->current_row = -1;
}