aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-11 19:14:58 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2006-09-11 19:14:58 +0000
commit839a4ffbf0f21f4be31c584f1da0c58227a8cd67 (patch)
tree1ef8646d6f29ae85bcccd87de71b2cd21f6b31a2
parent383974bf4ef61136490074d7c7ab5ae997f42b4b (diff)
More formatting
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@42767 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--channels/chan_sip.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 629373bd3..ea11c26af 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -1943,7 +1943,7 @@ static int __sip_autodestruct(void *data)
p->autokillid = -1;
if (option_debug)
- ast_log(LOG_DEBUG, "Auto destroying call '%s'\n", p->callid);
+ ast_log(LOG_DEBUG, "Auto destroying SIP dialog '%s'\n", p->callid);
append_history(p, "AutoDestroy", "%s", p->callid);
if (p->owner) {
ast_log(LOG_WARNING, "Autodestruct on dialog '%s' with owner in place (Method: %s)\n", p->callid, sip_methods[p->method].text);
@@ -1956,7 +1956,7 @@ static int __sip_autodestruct(void *data)
return 0;
}
-/*! \brief Schedule destruction of SIP call */
+/*! \brief Schedule destruction of SIP dialog */
static void sip_scheddestroy(struct sip_pvt *p, int ms)
{
if (ms < 0) {
@@ -2075,7 +2075,7 @@ static void parse_copy(struct sip_request *dst, const struct sip_request *src)
parse_request(dst);
}
-/* add a blank line if no body */
+/*! \brief add a blank line if no body */
static void add_blank(struct sip_request *req)
{
if (!req->lines) {