aboutsummaryrefslogtreecommitdiffstats
path: root/pbx
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-09-13 23:12:16 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-09-13 23:12:16 +0000
commit554e18151be375fa031019bfd2ca3962eea41e6c (patch)
tree05c8cc7f0a96abd11a80f2ef7bd22679c056f2bb /pbx
parent4c5fae66ee063868f620bd0fbbbdbb5cb85fc51a (diff)
Merged revisions 82358 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r82358 | qwell | 2007-09-13 18:11:27 -0500 (Thu, 13 Sep 2007) | 4 lines Fix a small typo. retrytime > waittime ........ git-svn-id: http://svn.digium.com/svn/asterisk/trunk@82359 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 544d43418..cac64737a 100644
--- a/pbx/pbx_spool.c
+++ b/pbx/pbx_spool.c
@@ -201,7 +201,7 @@ static int apply_outgoing(struct outgoing *o, char *fn, FILE *f)
}
} else if (!strcasecmp(buf, "waittime")) {
if ((sscanf(c, "%d", &o->waittime) != 1) || (o->waittime < 1)) {
- ast_log(LOG_WARNING, "Invalid retrytime at line %d of %s\n", lineno, fn);
+ ast_log(LOG_WARNING, "Invalid waittime at line %d of %s\n", lineno, fn);
o->waittime = 45;
}
} else if (!strcasecmp(buf, "retry")) {