laforge submitted this change.

View Change



1 is the latest approved patch-set.
No files were changed between the latest approved patch-set and the submitted one.

Approvals: laforge: Looks good to me, approved pespin: Looks good to me, approved Jenkins Builder: Verified
TCAP: LOG: fix missing newlines in log messages

Change-Id: Id57d8afeb01412ed7448bb27148be87980f4f906
---
M src/tcap_trans_tracking.c
1 file changed, 8 insertions(+), 4 deletions(-)

diff --git a/src/tcap_trans_tracking.c b/src/tcap_trans_tracking.c
index a5a0ca6..421ad7b 100644
--- a/src/tcap_trans_tracking.c
+++ b/src/tcap_trans_tracking.c
@@ -366,7 +366,8 @@
hash_for_each_safe(as->tcap.trans_track_own, i, tmp, entry, own_tid.list) {
if (entry->asp == asp) {
count++;
- LOGPASP(entry->asp, DLTCAP, LOGL_DEBUG, "Remove Cache entry for tcap own tid %u (asp removed)", entry->own_tid.tid);
+ LOGPASP(entry->asp, DLTCAP, LOGL_DEBUG, "Remove Cache entry for tcap own tid %u (asp removed)\n",
+ entry->own_tid.tid);
tcap_trans_track_entry_free(entry);
}
}
@@ -374,7 +375,8 @@
hash_for_each_safe(as->tcap.trans_track_peer, i, tmp, entry, peer_tid.list) {
if (entry->asp == asp) {
count++;
- LOGPASP(entry->asp, DLTCAP, LOGL_DEBUG, "Remove Cache entry for tcap own tid %u (asp removed)", entry->peer_tid.tid);
+ LOGPASP(entry->asp, DLTCAP, LOGL_DEBUG, "Remove Cache entry for tcap own tid %u (asp removed)\n",
+ entry->peer_tid.tid);
tcap_trans_track_entry_free(entry);
}
}
@@ -390,13 +392,15 @@

hash_for_each_safe(as->tcap.trans_track_own, i, tmp, entry, own_tid.list) {
count++;
- LOGPASP(entry->asp, DLTCAP, LOGL_DEBUG, "Remove Cache entry for tcap own tid %u (as removed)", entry->own_tid.tid);
+ LOGPASP(entry->asp, DLTCAP, LOGL_DEBUG, "Remove Cache entry for tcap own tid %u (as removed)\n",
+ entry->own_tid.tid);
tcap_trans_track_entry_free(entry);
}

hash_for_each_safe(as->tcap.trans_track_peer, i, tmp, entry, peer_tid.list) {
count++;
- LOGPASP(entry->asp, DLTCAP, LOGL_DEBUG, "Remove Cache entry for tcap own tid %u (as removed)", entry->peer_tid.tid);
+ LOGPASP(entry->asp, DLTCAP, LOGL_DEBUG, "Remove Cache entry for tcap own tid %u (as removed)\n",
+ entry->peer_tid.tid);
tcap_trans_track_entry_free(entry);
}


To view, visit change 43194. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-MessageType: merged
Gerrit-Project: libosmo-sigtran
Gerrit-Branch: master
Gerrit-Change-Id: Id57d8afeb01412ed7448bb27148be87980f4f906
Gerrit-Change-Number: 43194
Gerrit-PatchSet: 7
Gerrit-Owner: lynxis lazus <lynxis@fe80.eu>
Gerrit-Reviewer: Jenkins Builder
Gerrit-Reviewer: daniel <dwillmann@sysmocom.de>
Gerrit-Reviewer: laforge <laforge@osmocom.org>
Gerrit-Reviewer: pespin <pespin@sysmocom.de>