From: Jason Parker Date: Thu, 13 Sep 2007 23:11:27 +0000 (+0000) Subject: Fix a small typo. X-Git-Tag: 1.4.12~85 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6da68a5f0ac1912e8c560d52ccf86f71f7fb25b9;p=thirdparty%2Fasterisk.git Fix a small typo. retrytime > waittime git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@82358 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/pbx/pbx_spool.c b/pbx/pbx_spool.c index fe29127ea4..8cf38a1165 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")) {