]> git.ipfire.org Git - thirdparty/asterisk.git/commitdiff
Fix a small typo.
authorJason Parker <jparker@digium.com>
Thu, 13 Sep 2007 23:11:27 +0000 (23:11 +0000)
committerJason Parker <jparker@digium.com>
Thu, 13 Sep 2007 23:11:27 +0000 (23:11 +0000)
retrytime > waittime

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.4@82358 65c4cc65-6c06-0410-ace0-fbb531ad65f3

pbx/pbx_spool.c

index fe29127ea479a36039b615086b8600240065b66c..8cf38a11652b9657b1bfb1dbed03ee9fc5375073 100644 (file)
@@ -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")) {