Hi
I think there is a typo in the TM module in the master branch that causes compile failure.
diff --git a/modules/tm/tm_load.c b/modules/tm/tm_load.c index 7740db8..8d16a99 100644 --- a/modules/tm/tm_load.c +++ b/modules/tm/tm_load.c @@ -148,8 +148,8 @@ int load_tm( struct tm_binds *tmb) tmb->tm_ctx_get = tm_ctx_get; #endif tmb->t_append_branches = t_append_branches; - tmp->t_load_contacts = t_load_contacts; - tmp->t_next_contacts = t_next_contacts; + tmb->t_load_contacts = t_load_contacts; + tmb->t_next_contacts = t_next_contacts; return 1; }
Regards Richard.
Never mind, Jason committed a patch ;)
Regards Richard.
On 30 October 2014 09:21, Richard Good richard.good@smilecoms.com wrote:
Hi
I think there is a typo in the TM module in the master branch that causes compile failure.
diff --git a/modules/tm/tm_load.c b/modules/tm/tm_load.c index 7740db8..8d16a99 100644 --- a/modules/tm/tm_load.c +++ b/modules/tm/tm_load.c @@ -148,8 +148,8 @@ int load_tm( struct tm_binds *tmb) tmb->tm_ctx_get = tm_ctx_get; #endif tmb->t_append_branches = t_append_branches;
tmp->t_load_contacts = t_load_contacts;
tmp->t_next_contacts = t_next_contacts;
tmb->t_load_contacts = t_load_contacts;
tmb->t_next_contacts = t_next_contacts; return 1;
}
Regards Richard.