mirror of
https://github.com/asterisk/asterisk.git
synced 2025-10-03 19:16:46 +00:00
Merge "core: Fix LOW_MEMORY missing symbol ast_pbx_uuid_get." into 13
This commit is contained in:
@@ -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);
|
||||
|
Reference in New Issue
Block a user