summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--CHANGES5
-rwxr-xr-xconfigure4
-rw-r--r--configure.ac4
-rw-r--r--res/res_pjsip_registrar_expire.c2
4 files changed, 10 insertions, 5 deletions
diff --git a/CHANGES b/CHANGES
index c550f3fda..463c88427 100644
--- a/CHANGES
+++ b/CHANGES
@@ -49,6 +49,11 @@ RTP
disabled and the range is 96-127 because any number below might be rejected
by a remote implementation; although no such broken implementation is known.
+Queue
+------------------
+ * A new dialplan variable, ABANDONED, is set when the call is not answered
+ by an agent.
+
------------------------------------------------------------------------------
--- Functionality changes from Asterisk 13.11.0 to Asterisk 13.12.0 ----------
------------------------------------------------------------------------------
diff --git a/configure b/configure
index a82dcdcff..0446c4571 100755
--- a/configure
+++ b/configure
@@ -18374,7 +18374,7 @@ if ac_fn_c_try_compile "$LINENO"; then :
$as_echo "yes" >&6; }
AST_ADDRESS_SANITIZER=1
else
- AST_ADDRESS_SANITIZER=
+ AST_ADDRESS_SANITIZER=0
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
@@ -18406,7 +18406,7 @@ if ac_fn_c_try_compile "$LINENO"; then :
$as_echo "yes" >&6; }
AST_THREAD_SANITIZER=1
else
- AST_THREAD_SANITIZER=
+ AST_THREAD_SANITIZER=0
{ $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5
$as_echo "no" >&6; }
diff --git a/configure.ac b/configure.ac
index 42320e4f2..e4a20cfa5 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1106,7 +1106,7 @@ AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([], [int x = 1;])],
AC_MSG_RESULT(yes)
[AST_ADDRESS_SANITIZER=1],
- [AST_ADDRESS_SANITIZER=]
+ [AST_ADDRESS_SANITIZER=0]
AC_MSG_RESULT(no)
)
CFLAGS="${saved_sanitize_CFLAGS}"
@@ -1122,7 +1122,7 @@ AC_COMPILE_IFELSE(
[AC_LANG_PROGRAM([], [int x = 1;])],
AC_MSG_RESULT(yes)
[AST_THREAD_SANITIZER=1],
- [AST_THREAD_SANITIZER=]
+ [AST_THREAD_SANITIZER=0]
AC_MSG_RESULT(no)
)
CFLAGS="${saved_sanitize_CFLAGS}"
diff --git a/res/res_pjsip_registrar_expire.c b/res/res_pjsip_registrar_expire.c
index aeefc3fbc..e802733bb 100644
--- a/res/res_pjsip_registrar_expire.c
+++ b/res/res_pjsip_registrar_expire.c
@@ -82,7 +82,7 @@ static void *check_expiration_thread(void *data)
ast_variables_destroy(var);
if (contacts) {
- ast_debug(3, "Expiring %d contacts\n\n", ao2_container_count(contacts));
+ ast_debug(3, "Expiring %d contacts\n", ao2_container_count(contacts));
ao2_callback(contacts, OBJ_NODATA, expire_contact, NULL);
ao2_ref(contacts, -1);
}