mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-02 03:48:02 +00:00
Add missing newlines to CLI logging
........ Merged revisions 361471 from http://svn.asterisk.org/svn/asterisk/branches/1.8 ........ Merged revisions 361472 from http://svn.asterisk.org/svn/asterisk/branches/10 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@361476 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1228,7 +1228,7 @@ static int quote(struct ast_channel *chan, const char *cmd, char *data, char *bu
|
||||
char *bufptr = buf, *dataptr = data;
|
||||
|
||||
if (len < 3){ /* at least two for quotes and one for binary zero */
|
||||
ast_log(LOG_ERROR, "Not enough buffer");
|
||||
ast_log(LOG_ERROR, "Not enough buffer\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
@@ -1267,7 +1267,7 @@ static int csv_quote(struct ast_channel *chan, const char *cmd, char *data, char
|
||||
char *bufptr = buf, *dataptr = data;
|
||||
|
||||
if (len < 3) { /* at least two for quotes and one for binary zero */
|
||||
ast_log(LOG_ERROR, "Not enough buffer");
|
||||
ast_log(LOG_ERROR, "Not enough buffer\n");
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user