aboutsummaryrefslogtreecommitdiffstats
path: root/pbx
diff options
context:
space:
mode:
authorqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-09-13 23:11:27 +0000
committerqwell <qwell@f38db490-d61c-443f-a65b-d21fe96a405b>2007-09-13 23:11:27 +0000
commitcb7cdf96a39392d713753d099e6e1521826dde14 (patch)
tree859cdc7857b4f2e0198e85840e9366349c6a7f27 /pbx
parent3045a592f85d7c642ca67ae18c51ad4681d83c01 (diff)
Fix a small typo.
retrytime > waittime git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.4@82358 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 fe29127ea..8cf38a116 100644
--- a/pbx/pbx_spool.c
+++ b/pbx/pbx_spool.c
@@ -202,7 +202,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")) {