aboutsummaryrefslogtreecommitdiffstats
path: root/res
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-09-14 21:24:50 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2005-09-14 21:24:50 +0000
commit4ecd4082450ee89704d57ddd46600a8b79c23c56 (patch)
tree36ce0661a67d6baccf9af9dc048daca97c984707 /res
parent549f12ba3e24a26657b69942d6c27e06eddb4a39 (diff)
use API call for setting call time limit (issue #5227)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@6599 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'res')
-rwxr-xr-xres/res_osp.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/res/res_osp.c b/res/res_osp.c
index 3053cd9cc..128befbcc 100755
--- a/res/res_osp.c
+++ b/res/res_osp.c
@@ -534,7 +534,6 @@ int ast_osp_lookup(struct ast_channel *chan, char *provider, char *extension, ch
OSPTCALLID *callid;
OSPE_DEST_PROT prot;
OSPE_DEST_OSP_ENABLED ospenabled;
- time_t now;
result->handle = -1;
result->numresults = 0;
@@ -597,8 +596,7 @@ int ast_osp_lookup(struct ast_channel *chan, char *provider, char *extension, ch
sizeof(callednum), callednum, sizeof(callingnum), callingnum, sizeof(destination), destination, 0, NULL, &tokenlen, token)) {
ast_log(LOG_DEBUG, "Got destination '%s' and called: '%s' calling: '%s' for '%s' (provider '%s')\n",
destination, callednum, callingnum, extension, provider);
- time (&now);
- chan->whentohangup = now + timelimit; // Only support OSP server with only one duration limit
+ ast_channel_setwhentohangup (chan, timelimit); /* Only support OSP server with only one duration limit */
do {
if (!OSPPTransactionIsDestOSPEnabled (result->handle, &ospenabled) && (ospenabled == OSPE_OSP_FALSE)) {
result->token[0] = 0;