aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--epan/dissectors/packet-alcap.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/epan/dissectors/packet-alcap.c b/epan/dissectors/packet-alcap.c
index 7cd8ff6bfe..afee7827e6 100644
--- a/epan/dissectors/packet-alcap.c
+++ b/epan/dissectors/packet-alcap.c
@@ -40,6 +40,7 @@
#include <epan/prefs.h>
#include "packet-alcap.h"
#include "packet-e164.h"
+#include "packet-isup.h"
#include <epan/expert.h>
#include <epan/strutil.h>
@@ -594,6 +595,7 @@ static gchar* dissect_fields_dnsea(packet_info* pinfo _U_, tvbuff_t *tvb, proto_
msg_info->dest_nsap[len] = '\0';
proto_tree_add_item(tree, hf_alcap_dnsea, tvb, offset, 20, FALSE);
+ dissect_nsap(tvb, offset,20, tree);
return NULL;
}
@@ -615,6 +617,7 @@ static gchar* dissect_fields_onsea(packet_info* pinfo _U_, tvbuff_t *tvb, proto_
msg_info->orig_nsap[len] = '\0';
proto_tree_add_item(tree, hf_alcap_onsea, tvb, offset, 20, FALSE);
+ dissect_nsap(tvb, offset,20, tree);
return NULL;
}