[sr-dev] git:master:db16bd05: cdp: use TIME_T_FMT

Daniel-Constantin Mierla miconda at gmail.com
Wed Nov 3 13:03:41 CET 2021


Module: kamailio
Branch: master
Commit: db16bd057342cb043b07913f89918fa09ff8632a
URL: https://github.com/kamailio/kamailio/commit/db16bd057342cb043b07913f89918fa09ff8632a

Author: Sebastian Kemper <sebastian_ml at gmx.net>
Committer: Daniel-Constantin Mierla <miconda at gmail.com>
Date: 2021-11-03T13:03:34+01:00

cdp: use TIME_T_FMT

Signed-off-by: Sebastian Kemper <sebastian_ml at gmx.net>

---

Modified: src/modules/cdp/routing.c

---

Diff:  https://github.com/kamailio/kamailio/commit/db16bd057342cb043b07913f89918fa09ff8632a.diff
Patch: https://github.com/kamailio/kamailio/commit/db16bd057342cb043b07913f89918fa09ff8632a.patch

---

diff --git a/src/modules/cdp/routing.c b/src/modules/cdp/routing.c
index 34347caa26..7dc97f1758 100644
--- a/src/modules/cdp/routing.c
+++ b/src/modules/cdp/routing.c
@@ -121,10 +121,10 @@ peer* get_first_connected_route(cdp_session_t* cdp_session, routing_entry *r, in
 	}
 
 	least_recent_time = peers[0]->last_selected;
-	LM_DBG("peer [%.*s] was last used @ %ld\n", peers[0]->fqdn.len, peers[0]->fqdn.s, peers[0]->last_selected);
+	LM_DBG("peer [%.*s] was last used @ %" TIME_T_FMT "\n", peers[0]->fqdn.len, peers[0]->fqdn.s, TIME_T_CAST(peers[0]->last_selected));
 	p = peers[0];
 	for (j = 1; j < peer_count; j++) {
-		LM_DBG("Peer [%.*s] was last used at [%ld]\n", peers[j]->fqdn.len, peers[j]->fqdn.s, peers[j]->last_selected);
+		LM_DBG("Peer [%.*s] was last used at [%" TIME_T_FMT "]\n", peers[j]->fqdn.len, peers[j]->fqdn.s, TIME_T_CAST(peers[j]->last_selected));
 		if (peers[j]->last_selected < least_recent_time) {
 			least_recent_time = peers[j]->last_selected;
 			p = peers[j];




More information about the sr-dev mailing list