summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorzuul <zuul@gerrit.asterisk.org>2016-09-21 09:57:50 -0500
committerGerrit Code Review <gerrit2@gerrit.digium.api>2016-09-21 09:57:50 -0500
commit5cb3fc5d6777b03ac29bb7aa41a9b04076577513 (patch)
treed2da8e7ee0ed761f139e94d11dde61f095a3596e
parentf16ab192922b6532e653bde41ceb7dd33e73e04e (diff)
parentc9ce299b649471a10eecce2642420e04bdd12417 (diff)
Merge "core: Fix LOW_MEMORY missing symbol ast_pbx_uuid_get." into 13
-rw-r--r--main/asterisk.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/main/asterisk.c b/main/asterisk.c
index c2a471380..92993d34f 100644
--- a/main/asterisk.c
+++ b/main/asterisk.c
@@ -601,11 +601,6 @@ void ast_unregister_thread(void *id)
}
}
-int ast_pbx_uuid_get(char *pbx_uuid, int length)
-{
- return ast_db_get("pbx", "UUID", pbx_uuid, length);
-}
-
/*! \brief Give an overview of core settings */
static char *handle_show_settings(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a)
{
@@ -1132,6 +1127,11 @@ static char *handle_show_version_files(struct ast_cli_entry *e, int cmd, struct
#endif /* ! LOW_MEMORY */
+int ast_pbx_uuid_get(char *pbx_uuid, int length)
+{
+ return ast_db_get("pbx", "UUID", pbx_uuid, length);
+}
+
static void publish_fully_booted(void)
{
RAII_VAR(struct ast_json *, json_object, NULL, ast_json_unref);