aboutsummaryrefslogtreecommitdiffstats
path: root/pbx
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-01 23:53:13 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-07-01 23:53:13 +0000
commit2f5e61d8b946bfea9acae769888b27ffc7225eed (patch)
tree90cf205f3bd20e2c536ac591d4a6361e7305fd35 /pbx
parent17506132c1e196ef67ad5462e6f24eb185cc3c28 (diff)
Merged revisions 72806 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ................ r72806 | russell | 2007-07-01 18:52:45 -0500 (Sun, 01 Jul 2007) | 13 lines Merged revisions 72805 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.2 ........ r72805 | russell | 2007-07-01 18:51:34 -0500 (Sun, 01 Jul 2007) | 5 lines When appending lines to call files to keep track of retries, write a leading newline just in case the original call file did not have a newline at the end. This fix is in response to a problem I saw reported on the asterisk-users mailing list. ........ ................ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@72807 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'pbx')
-rw-r--r--pbx/pbx_spool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pbx/pbx_spool.c b/pbx/pbx_spool.c
index 2888efaeb..6c045d306 100644
--- a/pbx/pbx_spool.c
+++ b/pbx/pbx_spool.c
@@ -257,7 +257,7 @@ static void safe_append(struct outgoing *o, time_t now, char *s)
if (fd > -1) {
f = fdopen(fd, "a");
if (f) {
- fprintf(f, "%s: %ld %d (%ld)\n", s, (long)ast_mainpid, o->retries, (long) now);
+ fprintf(f, "\n%s: %ld %d (%ld)\n", s, (long)ast_mainpid, o->retries, (long) now);
fclose(f);
} else
close(fd);