From c9ce299b649471a10eecce2642420e04bdd12417 Mon Sep 17 00:00:00 2001 From: Corey Farrell Date: Tue, 20 Sep 2016 16:17:42 -0400 Subject: core: Fix LOW_MEMORY missing symbol ast_pbx_uuid_get. Move the function outside the conditional block that excludes LOW_MEMORY. ASTERISK-26273 #close Change-Id: Ic290fa128222c410c3531107e30efacabc8493b4 --- main/asterisk.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'main/asterisk.c') diff --git a/main/asterisk.c b/main/asterisk.c index 9ac9c4619..3a220ebc2 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); -- cgit v1.2.3