aboutsummaryrefslogtreecommitdiffstats
path: root/include/asterisk
diff options
context:
space:
mode:
authorrmudgett <rmudgett@f38db490-d61c-443f-a65b-d21fe96a405b>2011-06-07 23:14:25 +0000
committerrmudgett <rmudgett@f38db490-d61c-443f-a65b-d21fe96a405b>2011-06-07 23:14:25 +0000
commitd6afbec79e3e67b8b88b3075b3eb0c940c2d2d42 (patch)
tree9c0f6c666e4409db268c7cdd66c7e8294107049f /include/asterisk
parent855a87a67bab3fa1335d30043b3bbb569ce2ea61 (diff)
Correct some whitespace and a reference debug message.
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@322284 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'include/asterisk')
-rw-r--r--include/asterisk/message.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/include/asterisk/message.h b/include/asterisk/message.h
index f2fe493b1..e52c4c406 100644
--- a/include/asterisk/message.h
+++ b/include/asterisk/message.h
@@ -49,17 +49,17 @@ struct ast_msg;
* 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@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@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 @@ struct ast_msg_tech {
*
* \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);
};
/*!