summaryrefslogtreecommitdiff
path: root/main/enum.c
diff options
context:
space:
mode:
authorJeff Peeler <jpeeler@digium.com>2010-01-18 22:31:25 +0000
committerJeff Peeler <jpeeler@digium.com>2010-01-18 22:31:25 +0000
commit568c057c4c03452c86aa70dc4593accee963745f (patch)
tree07b772f4a93f6e959ccf10510fee364dd143f4f6 /main/enum.c
parentbbd290308f67cdaaf3a7cc80b40f09cbe104a112 (diff)
Extend max call limit duration from 24.8 days to 292+ million years.
If the limit was set past MAX_INT upon answering, the call was immediately hung up due to overflow from the return of ast_tvdiff_ms (in ast_check_hangup). The time calculation functions ast_tvdiff_sec and ast_tvdiff_ms have been changed to return an int64_t to prevent overflow. Also the reporter suggested adding a message indicating the reason for the call hanging up. Given that the new limit is so much higher, the message (which would only really be useful in the overflow scenario) has been made a debug message only. (closes issue #16006) Reported by: viraptor git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@241143 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'main/enum.c')
-rw-r--r--main/enum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/enum.c b/main/enum.c
index 416bb9072..1d65152df 100644
--- a/main/enum.c
+++ b/main/enum.c
@@ -851,7 +851,7 @@ int ast_get_enum(struct ast_channel *chan, const char *number, char *dst, int ds
ret = ast_search_dns(context, tmp, C_IN, T_NAPTR, enum_callback);
time_end = ast_tvnow();
- ast_verb(2, "ast_get_enum() profiling: %s, %s, %d ms\n",
+ ast_verb(2, "ast_get_enum() profiling: %s, %s, %" PRIi64 " ms\n",
(ret == 0) ? "OK" : "FAIL", tmp, ast_tvdiff_ms(time_end, time_start));
if (ret < 0) {