Module: sip-router
Branch: master
Commit: 260d43bb8bda0e9f0445d7d942dc10e976ff4621
URL:
http://git.sip-router.org/cgi-bin/gitweb.cgi/sip-router/?a=commit;h=260d43b…
Author: Daniel-Constantin Mierla <miconda(a)gmail.com>
Committer: Daniel-Constantin Mierla <miconda(a)gmail.com>
Date: Wed Sep 14 20:59:54 2011 +0200
tm: proper data type for xavp in tm_xdata_t struct
- reported by Juha Heinanen
- no real effect on branch 3.1 as xavps not enabled, but anyhow safer
---
modules/tm/h_table.h | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/tm/h_table.h b/modules/tm/h_table.h
index 8b8741b..7ee089e 100644
--- a/modules/tm/h_table.h
+++ b/modules/tm/h_table.h
@@ -312,7 +312,7 @@ typedef struct tm_xdata
struct usr_avp *domain_avps_from;
struct usr_avp *domain_avps_to;
#ifdef WITH_XAVP
- sr_xavp_t **xavps_list;
+ sr_xavp_t *xavps_list;
#endif
} tm_xdata_t;