Merge "core: Fix LOW_MEMORY missing symbol ast_pbx_uuid_get." into 13

This commit is contained in:
zuul
2016-09-21 09:57:50 -05:00
committed by Gerrit Code Review

View File

@@ -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 */ /*! \brief Give an overview of core settings */
static char *handle_show_settings(struct ast_cli_entry *e, int cmd, struct ast_cli_args *a) 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 */ #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) static void publish_fully_booted(void)
{ {
RAII_VAR(struct ast_json *, json_object, NULL, ast_json_unref); RAII_VAR(struct ast_json *, json_object, NULL, ast_json_unref);