|
@@ -450,12 +450,12 @@ int ki_has_credentials(sip_msg_t *msg, str* srealm)
|
|
|
|
|
|
ret = find_credentials(msg, srealm, HDR_PROXYAUTH_T, &hdr);
|
|
|
if(ret==0) {
|
|
|
- LM_DBG("found www credentials with realm [%.*s]\n", srealm->len, srealm->s);
|
|
|
+ LM_DBG("found proxy credentials with realm [%.*s]\n", srealm->len, srealm->s);
|
|
|
return 1;
|
|
|
}
|
|
|
ret = find_credentials(msg, srealm, HDR_AUTHORIZATION_T, &hdr);
|
|
|
if(ret==0) {
|
|
|
- LM_DBG("found proxy credentials with realm [%.*s]\n", srealm->len, srealm->s);
|
|
|
+ LM_DBG("found www credentials with realm [%.*s]\n", srealm->len, srealm->s);
|
|
|
return 1;
|
|
|
}
|
|
|
|