Remove init_framer(). It no longer does anything.

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@377246 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Richard Mudgett 2012-12-05 02:23:10 +00:00
parent 4dcb973228
commit 7c0b94a3e5
3 changed files with 0 additions and 10 deletions

View File

@ -20,7 +20,6 @@ int load_pbx(void); /*!< Provided by pbx.c */
int init_logger(void); /*!< Provided by logger.c */
void close_logger(void); /*!< Provided by logger.c */
void clean_time_zones(void); /*!< Provided by localtime.c */
int init_framer(void); /*!< Provided by frame.c */
int ast_term_init(void); /*!< Provided by term.c */
int astdb_init(void); /*!< Provided by db.c */
void ast_channels_init(void); /*!< Provided by channel.c */

View File

@ -4251,11 +4251,6 @@ int main(int argc, char *argv[])
exit(1);
}
if (init_framer()) {
printf("%s", term_quit());
exit(1);
}
if (ast_enum_init()) {
printf("%s", term_quit());
exit(1);

View File

@ -909,10 +909,6 @@ static struct ast_cli_entry my_clis[] = {
AST_CLI_DEFINE(show_codecs, "Displays a list of codecs"),
AST_CLI_DEFINE(show_codec_n, "Shows a specific codec"),
};
int init_framer(void)
{
return 0;
}
static int format_list_add_custom(struct ast_format_list *new)
{