aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
authorjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2011-06-24 19:57:14 +0000
committerjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2011-06-24 19:57:14 +0000
commit6d697f7e7eeb809d01c6c97dc69a4a6be852b23a (patch)
tree5245c5a6f48eb10dfbf5a5d5a3a3e6fc19b684a8 /epan
parent3311f2524c5c7afcf74655060d0650d4849d72f6 (diff)
Update the dissector_add call to use the current API.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@37782 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-linx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-linx.c b/epan/dissectors/packet-linx.c
index 6e503065db..09a1e3cea5 100644
--- a/epan/dissectors/packet-linx.c
+++ b/epan/dissectors/packet-linx.c
@@ -1048,5 +1048,5 @@ proto_reg_handoff_linx_tcp(void)
{
dissector_handle_t linx_tcp_handle;
linx_tcp_handle = create_dissector_handle(dissect_linx_tcp, proto_linx_tcp);
- dissector_add("tcp.port", TCP_PORT_LINX, linx_tcp_handle);
+ dissector_add_uint("tcp.port", TCP_PORT_LINX, linx_tcp_handle);
}