diff options
author | Martin Mathieson <martin.r.mathieson@googlemail.com> | 2010-12-20 11:26:50 +0000 |
---|---|---|
committer | Martin Mathieson <martin.r.mathieson@googlemail.com> | 2010-12-20 11:26:50 +0000 |
commit | c7c4850c382862dfe0ca02d721ab1d651e6195dc (patch) | |
tree | 7e47c9cbc8097ad8f3977ff9577758e124df479c /epan/dissectors/packet-catapult-dct2000.c | |
parent | 720f40cd30a3ae4f7ef85f952d86dda124ce4c0f (diff) | |
download | wireshark-c7c4850c382862dfe0ca02d721ab1d651e6195dc.tar.gz wireshark-c7c4850c382862dfe0ca02d721ab1d651e6195dc.tar.bz2 wireshark-c7c4850c382862dfe0ca02d721ab1d651e6195dc.zip |
From Papan Kumar Singh (bug 5504 & 5505):
Add missing break so that PDCP-LTE direction is set properly.
svn path=/trunk/; revision=35228
Diffstat (limited to 'epan/dissectors/packet-catapult-dct2000.c')
-rw-r--r-- | epan/dissectors/packet-catapult-dct2000.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/dissectors/packet-catapult-dct2000.c b/epan/dissectors/packet-catapult-dct2000.c index 4e290e8b16..d3ffeb13e0 100644 --- a/epan/dissectors/packet-catapult-dct2000.c +++ b/epan/dissectors/packet-catapult-dct2000.c @@ -906,6 +906,7 @@ static void dissect_pdcp_lte(tvbuff_t *tvb, gint offset, case RLC_UM_DATA_REQ: case RLC_TR_DATA_REQ: p_pdcp_lte_info->direction = DIRECTION_UPLINK; + break; default: p_pdcp_lte_info->direction = DIRECTION_DOWNLINK; |