From: James Golovich Date: Sun, 15 Feb 2004 06:35:22 +0000 (+0000) Subject: Fix typo in chan_sip.c (bug #1037) X-Git-Tag: 1.0.0-rc1~1089 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7907a37002562cd43cb923b20e6e6410d3ce1aa2;p=thirdparty%2Fasterisk.git Fix typo in chan_sip.c (bug #1037) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2165 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/channels/chan_sip.c b/channels/chan_sip.c index 45a3da026a..cb793a514e 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; }