From 584a510d20789628d6f58570f33b11a574bacf34 Mon Sep 17 00:00:00 2001
From: Jason Parker <jparker@digium.com>
Date: Thu, 13 Sep 2007 23:12:16 +0000
Subject: [PATCH] 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: https://origsvn.digium.com/svn/asterisk/trunk@82359 65c4cc65-6c06-0410-ace0-fbb531ad65f3
---
 pbx/pbx_spool.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pbx/pbx_spool.c b/pbx/pbx_spool.c
index 544d434184..cac64737a1 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")) {
-- 
GitLab