aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorcitats <citats@f38db490-d61c-443f-a65b-d21fe96a405b>2004-02-15 06:35:22 +0000
committercitats <citats@f38db490-d61c-443f-a65b-d21fe96a405b>2004-02-15 06:35:22 +0000
commit8985d2561d70daf306f88fea4c463776810d52e5 (patch)
treea223cd3631d9beb1e39cfebc7605a5d8a4bf8645 /channels
parentd6bc7030a953c3de65ee58c04839639167b5fe64 (diff)
Fix typo in chan_sip.c (bug #1037)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@2165 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rwxr-xr-xchannels/chan_sip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 45a3da026..cb793a514 100755
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -1031,7 +1031,7 @@ static void __sip_destroy(struct sip_pvt *p, int lockowner)
struct sip_pvt *cur, *prev = NULL;
struct sip_pkt *cp;
if (sipdebug)
- ast_log(LOG_DEBUG, "Destorying call '%s'\n", p->callid);
+ ast_log(LOG_DEBUG, "Destroying call '%s'\n", p->callid);
if (p->stateid > -1)
ast_extension_state_del(p->stateid, NULL);
if (p->initid > -1)
@@ -5601,7 +5601,7 @@ static int handle_request(struct sip_pvt *p, struct sip_request *req, struct soc
transmit_response_with_allow(p, "405 Method Not Allowed", req);
ast_log(LOG_NOTICE, "Unknown SIP command '%s' from '%s'\n",
cmd, inet_ntoa(p->sa.sin_addr));
- /* If this is some new method, and we don't have a call, destory it now */
+ /* If this is some new method, and we don't have a call, destroy it now */
if (!p->initreq.headers)
p->needdestroy = 1;
}