diff options
author | Pascal Quantin <pascal.quantin@gmail.com> | 2012-07-17 19:54:35 +0000 |
---|---|---|
committer | Pascal Quantin <pascal.quantin@gmail.com> | 2012-07-17 19:54:35 +0000 |
commit | 574f57d5ba0694e7cdcf39ff831fd9e4b563c668 (patch) | |
tree | 5ed6d398e27081635a0ee36911ab6fb9fbf22e84 /epan/dissectors/packet-dnp.c | |
parent | e9de91f53ea5b1187c3fb300c8459154a3a730d0 (diff) | |
download | wireshark-574f57d5ba0694e7cdcf39ff831fd9e4b563c668.tar.gz wireshark-574f57d5ba0694e7cdcf39ff831fd9e4b563c668.tar.bz2 wireshark-574f57d5ba0694e7cdcf39ff831fd9e4b563c668.zip |
From Chris Bontje via https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7491 :
DNP3 protocol dissector does not fully decode application layer object 50 variation 3
svn path=/trunk/; revision=43772
Diffstat (limited to 'epan/dissectors/packet-dnp.c')
-rw-r--r-- | epan/dissectors/packet-dnp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/dissectors/packet-dnp.c b/epan/dissectors/packet-dnp.c index 9d48c63e9e..baf04ebcbd 100644 --- a/epan/dissectors/packet-dnp.c +++ b/epan/dissectors/packet-dnp.c @@ -2229,6 +2229,7 @@ dnp3_al_process_object(tvbuff_t *tvb, packet_info *pinfo, int offset, proto_tree break; case AL_OBJ_TD: /* Time and Date (Obj:50, Var:01) */ + case AL_OBJ_TDR: /* Time and Date at Last Recorded Time (Obj:50, Var:03) */ case AL_OBJ_TDCTO: /* Time and Date CTO (Obj:51, Var:01) */ dnp3_al_get_timestamp(&al_cto, tvb, data_pos); |