summaryrefslogtreecommitdiff
path: root/comms/asterisk16/patches/patch-aw
diff options
context:
space:
mode:
Diffstat (limited to 'comms/asterisk16/patches/patch-aw')
-rw-r--r--comms/asterisk16/patches/patch-aw19
1 files changed, 0 insertions, 19 deletions
diff --git a/comms/asterisk16/patches/patch-aw b/comms/asterisk16/patches/patch-aw
deleted file mode 100644
index ee8012efacd..00000000000
--- a/comms/asterisk16/patches/patch-aw
+++ /dev/null
@@ -1,19 +0,0 @@
-$NetBSD: patch-aw,v 1.2 2010/05/20 17:14:45 jnemeth Exp $
-
---- apps/app_followme.c.orig 2010-03-20 17:50:53.000000000 +0000
-+++ apps/app_followme.c
-@@ -885,12 +885,12 @@ static void end_bridge_callback(void *da
-
- ast_channel_lock(chan);
- if (chan->cdr->answer.tv_sec) {
-- snprintf(buf, sizeof(buf), "%ld", (long) end - chan->cdr->answer.tv_sec);
-+ snprintf(buf, sizeof(buf), "%jd", (intmax_t) ((long) end - chan->cdr->answer.tv_sec));
- pbx_builtin_setvar_helper(chan, "ANSWEREDTIME", buf);
- }
-
- if (chan->cdr->start.tv_sec) {
-- snprintf(buf, sizeof(buf), "%ld", (long) end - chan->cdr->start.tv_sec);
-+ snprintf(buf, sizeof(buf), "%jd", (intmax_t) ((long) end - chan->cdr->start.tv_sec));
- pbx_builtin_setvar_helper(chan, "DIALEDTIME", buf);
- }
- ast_channel_unlock(chan);