aboutsummaryrefslogtreecommitdiffstats
path: root/asn1/h245
diff options
context:
space:
mode:
authorEvan Huus <eapache@gmail.com>2013-11-23 22:37:33 +0000
committerEvan Huus <eapache@gmail.com>2013-11-23 22:37:33 +0000
commit1db1b8e2bb6cd4ae1731205738eef9f572a03ead (patch)
treed8ad0a9047acd96fd31994459828e3203571c9fe /asn1/h245
parent318d38b576603721ce21ff269c0bb9e60dc766b0 (diff)
Convert ASN1 dissectors from ep_address_to_str to address_to_str. Clean up a bit
of ansi_tcap code while in the neighbourhood. svn path=/trunk/; revision=53530
Diffstat (limited to 'asn1/h245')
-rw-r--r--asn1/h245/packet-h245-template.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/asn1/h245/packet-h245-template.c b/asn1/h245/packet-h245-template.c
index e791a4f007..d95292c683 100644
--- a/asn1/h245/packet-h245-template.c
+++ b/asn1/h245/packet-h245-template.c
@@ -323,7 +323,10 @@ void h245_set_h223_add_lc_handle( h223_add_lc_handle_t handle )
static const gchar *gen_olc_key(guint16 lc_num, address *dst_addr, address *src_addr)
{
- return wmem_strdup_printf(wmem_packet_scope(), "%s/%s/%u", ep_address_to_str(dst_addr), ep_address_to_str(src_addr), lc_num);
+ return wmem_strdup_printf(wmem_packet_scope(), "%s/%s/%u",
+ address_to_str(wmem_packet_scope(), dst_addr),
+ address_to_str(wmem_packet_scope(), src_addr),
+ lc_num);
}
static void update_unicast_addr(unicast_addr_t *req_addr, unicast_addr_t *ack_addr)