[svn-commits] qwell: branch 1.4 r82358 - /branches/1.4/pbx/pbx_spool.c
SVN commits to the Digium repositories
svn-commits at lists.digium.com
Thu Sep 13 18:11:28 CDT 2007
Author: qwell
Date: Thu Sep 13 18:11:27 2007
New Revision: 82358
URL: http://svn.digium.com/view/asterisk?view=rev&rev=82358
Log:
Fix a small typo.
retrytime > waittime
Modified:
branches/1.4/pbx/pbx_spool.c
Modified: branches/1.4/pbx/pbx_spool.c
URL: http://svn.digium.com/view/asterisk/branches/1.4/pbx/pbx_spool.c?view=diff&rev=82358&r1=82357&r2=82358
==============================================================================
--- branches/1.4/pbx/pbx_spool.c (original)
+++ branches/1.4/pbx/pbx_spool.c Thu Sep 13 18:11:27 2007
@@ -202,7 +202,7 @@
}
} 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")) {
More information about the svn-commits
mailing list