[asterisk-commits] rmudgett: trunk r377246 - in /trunk: include/asterisk/ main/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Dec 4 20:23:13 CST 2012
Author: rmudgett
Date: Tue Dec 4 20:23:10 2012
New Revision: 377246
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=377246
Log:
Remove init_framer(). It no longer does anything.
Modified:
trunk/include/asterisk/_private.h
trunk/main/asterisk.c
trunk/main/format.c
Modified: trunk/include/asterisk/_private.h
URL: http://svnview.digium.com/svn/asterisk/trunk/include/asterisk/_private.h?view=diff&rev=377246&r1=377245&r2=377246
==============================================================================
--- trunk/include/asterisk/_private.h (original)
+++ trunk/include/asterisk/_private.h Tue Dec 4 20:23:10 2012
@@ -20,7 +20,6 @@
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 */
Modified: trunk/main/asterisk.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/asterisk.c?view=diff&rev=377246&r1=377245&r2=377246
==============================================================================
--- trunk/main/asterisk.c (original)
+++ trunk/main/asterisk.c Tue Dec 4 20:23:10 2012
@@ -4251,11 +4251,6 @@
exit(1);
}
- if (init_framer()) {
- printf("%s", term_quit());
- exit(1);
- }
-
if (ast_enum_init()) {
printf("%s", term_quit());
exit(1);
Modified: trunk/main/format.c
URL: http://svnview.digium.com/svn/asterisk/trunk/main/format.c?view=diff&rev=377246&r1=377245&r2=377246
==============================================================================
--- trunk/main/format.c (original)
+++ trunk/main/format.c Tue Dec 4 20:23:10 2012
@@ -909,10 +909,6 @@
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)
{
More information about the asterisk-commits
mailing list