summaryrefslogtreecommitdiff
path: root/funcs/func_timeout.c
diff options
context:
space:
mode:
authorDavid Vossel <dvossel@digium.com>2009-07-16 21:45:14 +0000
committerDavid Vossel <dvossel@digium.com>2009-07-16 21:45:14 +0000
commit82ce0f4efcd6b418b481852be669c2b5ed67a7ce (patch)
treea3a6d1cccb8de237889db15e7411ab2aa34b6113 /funcs/func_timeout.c
parent8bf870e4afc596d60cb31d01b657c18a5f29612d (diff)
TIMEOUT(absolute) returned negative value.
(closes issue #15513) Reported by: ys git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@206877 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'funcs/func_timeout.c')
-rw-r--r--funcs/func_timeout.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/funcs/func_timeout.c b/funcs/func_timeout.c
index caa562834..f2623b485 100644
--- a/funcs/func_timeout.c
+++ b/funcs/func_timeout.c
@@ -90,7 +90,7 @@ static int timeout_read(struct ast_channel *chan, const char *cmd, char *data,
ast_copy_string(buf, "0", len);
} else {
myt = ast_tvnow();
- snprintf(buf, len, "%.3f", ast_tvdiff_ms(myt, chan->whentohangup) / 1000.0);
+ snprintf(buf, len, "%.3f", ast_tvdiff_ms(chan->whentohangup, myt) / 1000.0);
}
break;