aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xchannel.c2
-rwxr-xr-xchannels/chan_sip.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/channel.c b/channel.c
index ba42f9ad2..8394b80a8 100755
--- a/channel.c
+++ b/channel.c
@@ -734,7 +734,7 @@ static void ast_queue_spy_frame(struct ast_channel_spy *spy, struct ast_frame *f
if (count > 100) {
struct ast_frame *freef, *headf;
- ast_log(LOG_ERROR, "Too Many frames queued at once, flushing cache.");
+ ast_log(LOG_ERROR, "Too Many frames queued at once, flushing cache.\n");
headf = spy->queue[pos];
/* deref the queue right away so it looks empty */
spy->queue[pos] = NULL;
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 4ae182c22..70f7b5f75 100755
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -9594,7 +9594,7 @@ static struct sip_auth *add_realm_authentication(struct sip_auth *authlist, char
realm++;
}
if (!username || ast_strlen_zero(username) || !realm || ast_strlen_zero(realm)) {
- ast_log(LOG_WARNING, "Format for authentication entry is user[:secret]@realm at line %d", lineno);
+ ast_log(LOG_WARNING, "Format for authentication entry is user[:secret]@realm at line %d\n", lineno);
return (authlist);
}
stringp = username;