[asterisk-commits] rmudgett: trunk r322284 - in /trunk: channels/ include/asterisk/
SVN commits to the Asterisk project
asterisk-commits at lists.digium.com
Tue Jun 7 18:14:29 CDT 2011
Author: rmudgett
Date: Tue Jun 7 18:14:25 2011
New Revision: 322284
URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=322284
Log:
Correct some whitespace and a reference debug message.
Modified:
trunk/channels/chan_sip.c
trunk/include/asterisk/message.h
Modified: trunk/channels/chan_sip.c
URL: http://svnview.digium.com/svn/asterisk/trunk/channels/chan_sip.c?view=diff&rev=322284&r1=322283&r2=322284
==============================================================================
--- trunk/channels/chan_sip.c (original)
+++ trunk/channels/chan_sip.c Tue Jun 7 18:14:25 2011
@@ -7411,7 +7411,7 @@
p->peercaps = ast_format_cap_destroy(p->peercaps);
p->redircaps = ast_format_cap_destroy(p->redircaps);
p->prefcaps = ast_format_cap_destroy(p->prefcaps);
- ao2_t_ref(p, -1, "Yuck, couldn't allocate cc_params struct. Get rid o' p");
+ ao2_t_ref(p, -1, "Yuck, couldn't allocate format capabilities. Get rid o' p");
return NULL;
}
Modified: trunk/include/asterisk/message.h
URL: http://svnview.digium.com/svn/asterisk/trunk/include/asterisk/message.h?view=diff&rev=322284&r1=322283&r2=322284
==============================================================================
--- trunk/include/asterisk/message.h (original)
+++ trunk/include/asterisk/message.h Tue Jun 7 18:14:25 2011
@@ -49,17 +49,17 @@
* A message technology is capable of transmitting text messages.
*/
struct ast_msg_tech {
- /*!
- * \brief Name of this message technology
- *
- * This is the name that comes at the beginning of a URI for messages
- * that should be sent to this message technology implementation.
- * For example, messages sent to "xmpp:rbryant at digium.com" would be
- * passed to the ast_msg_tech with a name of "xmpp".
- */
- const char * const name;
- /*!
- * \brief Send a message.
+ /*!
+ * \brief Name of this message technology
+ *
+ * This is the name that comes at the beginning of a URI for messages
+ * that should be sent to this message technology implementation.
+ * For example, messages sent to "xmpp:rbryant at digium.com" would be
+ * passed to the ast_msg_tech with a name of "xmpp".
+ */
+ const char * const name;
+ /*!
+ * \brief Send a message.
*
* \param msg the message to send
* \param to the URI of where the message is being sent
@@ -70,8 +70,8 @@
*
* \retval 0 success
* \retval non-zero failure
- */
- int (* const msg_send)(const struct ast_msg *msg, const char *to, const char *from);
+ */
+ int (* const msg_send)(const struct ast_msg *msg, const char *to, const char *from);
};
/*!
More information about the asterisk-commits
mailing list