dect
/
asterisk
Archived
13
0
Fork 0

Typo fix ("SIP/2.0 XXX" is 11 chars, not 10)

(closes issue #15362)
 Reported by: klaus3000
 Patches: 
       chan_sip.c_logmessagefix_patch.txt uploaded by klaus3000 (license 65)


git-svn-id: http://svn.digium.com/svn/asterisk/trunk@214199 f38db490-d61c-443f-a65b-d21fe96a405b
This commit is contained in:
tilghman 2009-08-26 16:53:03 +00:00
parent 2a2e250033
commit 846213eee7
1 changed files with 1 additions and 1 deletions

View File

@ -3410,7 +3410,7 @@ static int __sip_xmit(struct sip_pvt *p, struct ast_str *data, int len)
int res = 0;
const struct sockaddr_in *dst = sip_real_dst(p);
ast_debug(2, "Trying to put '%.10s' onto %s socket destined for %s:%d\n", data->str, get_transport_pvt(p), ast_inet_ntoa(dst->sin_addr), htons(dst->sin_port));
ast_debug(2, "Trying to put '%.11s' onto %s socket destined for %s:%d\n", data->str, get_transport_pvt(p), ast_inet_ntoa(dst->sin_addr), htons(dst->sin_port));
if (sip_prepare_socket(p) < 0)
return XMIT_ERROR;