summaryrefslogtreecommitdiff
path: root/pbx
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-03-31 08:00:26 +0000
committerMark Spencer <markster@digium.com>2004-03-31 08:00:26 +0000
commit71e80e5f627080a0694624ee9c32b7600c6d5c79 (patch)
tree4bce6f5207053a468b944b60c1e5e3165ced4978 /pbx
parent8b5bbe4673ce5a1f08485c7615f50a1a045c2430 (diff)
Leave retry time alone, handle "opaque" stuff in message.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2589 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'pbx')
-rwxr-xr-xpbx/pbx_spool.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/pbx/pbx_spool.c b/pbx/pbx_spool.c
index d5e2b960f..27f39c9a3 100755
--- a/pbx/pbx_spool.c
+++ b/pbx/pbx_spool.c
@@ -182,9 +182,6 @@ static int apply_outgoing(struct outgoing *o, char *fn, FILE *f)
}
}
strncpy(o->fn, fn, sizeof(o->fn) - 1);
- /* Check sanity of times */
- if (o->retrytime < o->waittime + 5)
- o->retrytime = o->waittime + 5;
if (!strlen(o->tech) || !strlen(o->dest) || (!strlen(o->app) && !strlen(o->exten))) {
ast_log(LOG_WARNING, "At least one of app or extension must be specified, along with tech and dest in file %s\n", fn);
return -1;