In passing, correct the formatting of the Timestamp attribute so that there is a
space after the colon and before the value.
(closes issue #15861)
Reported by: Ivan
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@217408
65c4cc65-6c06-0410-ace0-
fbb531ad65f3
if (!ast_strlen_zero(actionid)){
astman_append(s, "ActionID: %s\r\n", actionid);
}
- astman_append(s, "Ping: Pong\r\nTimestamp:%ld.%06lu\r\n", now.tv_sec, (unsigned long) now.tv_usec);
+ astman_append(
+ s,
+ "Ping: Pong\r\n"
+ "Timestamp: %ld.%06lu\r\n"
+ "\r\n",
+ now.tv_sec, (unsigned long) now.tv_usec);
return 0;
}