aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-h323.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-h323.c')
-rw-r--r--epan/dissectors/packet-h323.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/epan/dissectors/packet-h323.c b/epan/dissectors/packet-h323.c
index ae089cc01e..f06af3c03e 100644
--- a/epan/dissectors/packet-h323.c
+++ b/epan/dissectors/packet-h323.c
@@ -67,13 +67,13 @@ gef_ctx_t* gef_ctx_get(void *ptr) {
gef_ctx_t *gefx = (gef_ctx_t*)ptr;
asn1_ctx_t *actx = (asn1_ctx_t*)ptr;
- if (!asn1_ctx_check_signature(actx))
+ if (!asn1_ctx_check_signature(actx))
actx = NULL;
if (actx)
gefx = (gef_ctx_t *)actx->private_data;
- if (!gef_ctx_check_signature(gefx))
+ if (!gef_ctx_check_signature(gefx))
gefx = NULL;
return gefx;
@@ -84,7 +84,7 @@ void gef_ctx_update_key(gef_ctx_t *gefx) {
if (!gefx) return;
parent_key = (gefx->parent) ? gefx->parent->key : NULL;
- gefx->key = wmem_strdup_printf(wmem_packet_scope(),
+ gefx->key = wmem_strdup_printf(wmem_packet_scope(),
"%s%s" /* parent prefix */
"%s%s%s" /* type, id */
"%s%s" /* subid */,
@@ -602,9 +602,9 @@ void proto_register_h323(void) {
/*--- proto_reg_handoff_h323 -------------------------------------------*/
-void proto_reg_handoff_h323(void)
+void proto_reg_handoff_h323(void)
{
- dissector_handle_t q931_handle;
+ dissector_handle_t q931_handle;
q931_handle = find_dissector("q931");
@@ -612,11 +612,11 @@ void proto_reg_handoff_h323(void)
dissector_add_string("h225.tp", "1.3.12.9", q931_handle);
/* H.323, Annex M4, Tunnelling of narrow-band signalling syntax (NSS) for H.323 */
- dissector_add_string("h225.gef.content", "GenericData/1000/1",
+ dissector_add_string("h225.gef.content", "GenericData/1000/1",
new_create_dissector_handle(dissect_RasTunnelledSignallingMessage_PDU, proto_h323));
/* H.323, Annex R, Robustness methods for H.323 entities */
- dissector_add_string("h225.gef.content", "GenericData/1/1",
+ dissector_add_string("h225.gef.content", "GenericData/1/1",
new_create_dissector_handle(dissect_RobustnessData_PDU, proto_h323));
}