[asterisk-commits] seanbright: branch group/asterisk-cpp r168468 - /team/group/asterisk-cpp/main/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Sun Jan 11 21:35:24 CST 2009
Author: seanbright
Date: Sun Jan 11 21:35:23 2009
New Revision: 168468
URL: http://svn.digium.com/svn-view/asterisk?view=rev&rev=168468
Log:
Fix up a few new things that have e'sloded
Modified:
team/group/asterisk-cpp/main/dial.c
team/group/asterisk-cpp/main/features.c
Modified: team/group/asterisk-cpp/main/dial.c
URL: http://svn.digium.com/svn-view/asterisk/team/group/asterisk-cpp/main/dial.c?view=diff&rev=168468&r1=168467&r2=168468
==============================================================================
--- team/group/asterisk-cpp/main/dial.c (original)
+++ team/group/asterisk-cpp/main/dial.c Sun Jan 11 21:35:23 2009
@@ -46,7 +46,7 @@
enum ast_dial_result state; /*!< Status of dial */
void *options[AST_DIAL_OPTION_MAX]; /*!< Global options */
ast_dial_state_callback state_callback; /*!< Status callback */
- AST_LIST_HEAD(, ast_dial_channel) channels; /*!< Channels being dialed */
+ AST_LIST_HEAD(channels_list, ast_dial_channel) channels; /*!< Channels being dialed */
pthread_t thread; /*!< Thread (if running in async) */
ast_mutex_t lock; /*! Lock to protect the thread information above */
};
Modified: team/group/asterisk-cpp/main/features.c
URL: http://svn.digium.com/svn-view/asterisk/team/group/asterisk-cpp/main/features.c?view=diff&rev=168468&r1=168467&r2=168468
==============================================================================
--- team/group/asterisk-cpp/main/features.c (original)
+++ team/group/asterisk-cpp/main/features.c Sun Jan 11 21:35:23 2009
@@ -1047,7 +1047,7 @@
ast_log(LOG_ERROR,"Cannot stop recording the call. The stopmixmonitor application is disabled.\n");
return -1;
} else {
- pbx_exec(callee_chan, stopmixmonitor_app, (void *) "");
+ pbx_exec(callee_chan, stopmixmonitor_app, (const char *) "");
return AST_FEATURE_RETURN_SUCCESS;
}
}
More information about the asterisk-commits
mailing list