summaryrefslogtreecommitdiff
path: root/channels
diff options
context:
space:
mode:
authorKevin P. Fleming <kpfleming@digium.com>2005-10-05 01:40:01 +0000
committerKevin P. Fleming <kpfleming@digium.com>2005-10-05 01:40:01 +0000
commit8496d5fe92bad3d563607d6b9f3de35f22e3abd7 (patch)
treec627b990c2270dccff56281c98efc2364d988f3d /channels
parent48075716485a13f4c5e780783f6e515fccbf421a (diff)
fix authentication header extra space (issue #5329)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@6732 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'channels')
-rwxr-xr-xchannels/chan_sip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index 7a9aeb2a3..5a714dd8c 100755
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -4135,7 +4135,7 @@ static int transmit_response_with_auth(struct sip_pvt *p, char *msg, struct sip_
}
/* Stale means that they sent us correct authentication, but
based it on an old challenge (nonce) */
- snprintf(tmp, sizeof(tmp), "Digest realm=\"%s\", nonce=\"%s\" %s", global_realm, randdata, stale ? ", stale=true" : "");
+ snprintf(tmp, sizeof(tmp), "Digest realm=\"%s\", nonce=\"%s\"%s", global_realm, randdata, stale ? ", stale=true" : "");
respprep(&resp, p, msg, req);
add_header(&resp, header, tmp);
add_header_contentLength(&resp, 0);