mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-12 15:45:18 +00:00
Merged revisions 54888 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r54888 | russell | 2007-02-16 11:40:38 -0600 (Fri, 16 Feb 2007) | 3 lines Clean up a few coding guidelines issues - spaces to tabs, use sizeof() to pass the size of a static buffer, add spaces ... ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@54890 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1952,7 +1952,7 @@ static int manager_parking_status( struct mansession *s, const struct message *m
|
||||
char idText[256] = "";
|
||||
|
||||
if (!ast_strlen_zero(id))
|
||||
snprintf(idText, 256, "ActionID: %s\r\n", id);
|
||||
snprintf(idText, sizeof(idText), "ActionID: %s\r\n", id);
|
||||
|
||||
astman_send_ack(s, m, "Parked calls will follow");
|
||||
|
||||
|
Reference in New Issue
Block a user