summaryrefslogtreecommitdiff
path: root/main/logger.c
diff options
context:
space:
mode:
authorCorey Farrell <git@cfware.com>2015-11-09 19:19:04 -0500
committerCorey Farrell <git@cfware.com>2015-11-10 15:37:09 -0500
commitbe93036a4e224e2b9a19c9bdcfb6ac34a1534b31 (patch)
tree8e6652121aca770859b15449bb6c8768d0de0366 /main/logger.c
parent131b750fc6a609d69f484539d77aec1d8dfe60ad (diff)
Remove ABI compatibility stub functions.
ABI compatibility stubs existed for ast_app_separate_args and ast_verbose, this is not needed in master. Change-Id: I07b4d2c16079da3c2c6efa55df4a74368e0bd453
Diffstat (limited to 'main/logger.c')
-rw-r--r--main/logger.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/main/logger.c b/main/logger.c
index a5925e4c0..73b8ee1a2 100644
--- a/main/logger.c
+++ b/main/logger.c
@@ -2144,21 +2144,6 @@ void __ast_verbose_callid(const char *file, int line, const char *func, int leve
va_end(ap);
}
-/* No new code should use this directly, but we have the ABI for backwards compat */
-#undef ast_verbose
-void __attribute__((format(printf, 1,2))) ast_verbose(const char *fmt, ...);
-void ast_verbose(const char *fmt, ...)
-{
- ast_callid callid;
- va_list ap;
-
- callid = ast_read_threadstorage_callid();
-
- va_start(ap, fmt);
- __ast_verbose_ap("", 0, "", 0, callid, fmt, ap);
- va_end(ap);
-}
-
/*! Console verbosity level node. */
struct verb_console {
/*! List node link */