aboutsummaryrefslogtreecommitdiffstats
path: root/pbx
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-03-31 08:00:26 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2004-03-31 08:00:26 +0000
commitdde77c472594abe21061e38a14d3530abb1d2481 (patch)
tree4bce6f5207053a468b944b60c1e5e3165ced4978 /pbx
parente1ee2c88735a1ac9cc0c515d883ec3b2099610e0 (diff)
Leave retry time alone, handle "opaque" stuff in message.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@2589 f38db490-d61c-443f-a65b-d21fe96a405b
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;