*** empty log message ***

This commit is contained in:
Thomas Ries 2006-06-20 18:14:38 +00:00
parent b7a15a854c
commit 66f574f607
2 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@ int fwapi_start_rtp(int rtp_direction,
sts=custom_fw_control(fwdata);
if (sts != STS_SUCCESS) {
ERROR("Custom firewall module returned error [START, sts=%s]",sts);
ERROR("Custom firewall module returned error [START, sts=%i]",sts);
}
#endif
return STS_SUCCESS;
@ -63,7 +63,7 @@ int fwapi_stop_rtp(int rtp_direction,
sts=custom_fw_control(fwdata);
if (sts != STS_SUCCESS) {
ERROR("Custom firewall module returned error [STOP, sts=%s]",sts);
ERROR("Custom firewall module returned error [STOP, sts=%i]",sts);
}
#endif
return STS_SUCCESS;

View File

@ -331,7 +331,7 @@ int register_client(sip_ticket_t *ticket, int force_lcl_masq) {
(url1_contact->host) ? url1_contact->host : "*NULL*",
(url2_to->username) ? url2_to->username : "*NULL*",
(url2_to->host) ? url2_to->host : "*NULL*",
i, urlmap[i].expires-time_now);
i, (long)urlmap[i].expires-time_now);
break;
}
}