[svn-commits] mmichelson: branch mmichelson/transfer_stasis r391698 - /team/mmichelson/tran...

SVN commits to the Digium repositories svn-commits at lists.digium.com
Thu Jun 13 13:23:52 CDT 2013


Author: mmichelson
Date: Thu Jun 13 13:23:51 2013
New Revision: 391698

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=391698
Log:
Missed one last spot where "is_native" should be "is_external".


Modified:
    team/mmichelson/transfer_stasis/include/asterisk/bridging.h

Modified: team/mmichelson/transfer_stasis/include/asterisk/bridging.h
URL: http://svnview.digium.com/svn/asterisk/team/mmichelson/transfer_stasis/include/asterisk/bridging.h?view=diff&rev=391698&r1=391697&r2=391698
==============================================================================
--- team/mmichelson/transfer_stasis/include/asterisk/bridging.h (original)
+++ team/mmichelson/transfer_stasis/include/asterisk/bridging.h Thu Jun 13 13:23:51 2013
@@ -1436,7 +1436,7 @@
  * \note Absolutely _NO_ channel locks should be held before
  * calling this function.
  *
- * \param is_native Indicates that native protocol messages are used to perform the transfer
+ * \param is_external Indicates that transfer was initiated externally
  * \param transferer The channel performing the blind transfer
  * \param exten The dialplan extension to send the call to
  * \param context The dialplan context to send the call to
@@ -1445,7 +1445,7 @@
  * \param user_data Argument for new_channel_cb
  * \return The success or failure result of the blind transfer
  */
-enum ast_transfer_result ast_bridge_transfer_blind(int is_native,
+enum ast_transfer_result ast_bridge_transfer_blind(int is_external,
 		struct ast_channel *transferer, const char *exten, const char *context,
 		transfer_channel_cb new_channel_cb, void *user_data);
 




More information about the svn-commits mailing list