More formatting

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@42767 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Olle Johansson 2006-09-11 19:14:58 +00:00
parent 4c081033b6
commit 31fa147b76
1 changed files with 3 additions and 3 deletions

View File

@ -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) {