Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
asterisk
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Issue analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Voice
asterisk
Commits
48730ae6
Commit
48730ae6
authored
8 years ago
by
Richard Mudgett
Browse files
Options
Downloads
Patches
Plain Diff
res_pjsip_outbound_authenticator_digest.c: Fix spacing in warning messages.
Change-Id: I573f0343c0c63a785cd4da60d57cc9f8b9ce7f49
parent
fb02cc5a
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
res/res_pjsip_outbound_authenticator_digest.c
+6
-6
6 additions, 6 deletions
res/res_pjsip_outbound_authenticator_digest.c
with
6 additions
and
6 deletions
res/res_pjsip_outbound_authenticator_digest.c
+
6
−
6
View file @
48730ae6
...
...
@@ -141,18 +141,18 @@ static int digest_create_request_with_auth(const struct ast_sip_auth_vector *aut
++
cseq
->
cseq
;
return
0
;
case
PJSIP_ENOCREDENTIAL
:
ast_log
(
LOG_WARNING
,
"Unable to create request with auth."
"No auth credentials for any realms in challenge.
\n
"
);
ast_log
(
LOG_WARNING
,
"
Unable to create request with auth.
No auth credentials for any realms in challenge.
\n
"
);
break
;
case
PJSIP_EAUTHSTALECOUNT
:
ast_log
(
LOG_WARNING
,
"Unable to create request with auth."
"Number of stale retries exceeded
\n
"
);
ast_log
(
LOG_WARNING
,
"
Unable to create request with auth.
Number of stale retries exceeded
.
\n
"
);
break
;
case
PJSIP_EFAILEDCREDENTIAL
:
ast_log
(
LOG_WARNING
,
"Authentication credentials not accepted by server
\n
"
);
ast_log
(
LOG_WARNING
,
"Authentication credentials not accepted by server
.
\n
"
);
break
;
default:
ast_log
(
LOG_WARNING
,
"Unable to create request with auth. Unknown failure
\n
"
);
ast_log
(
LOG_WARNING
,
"Unable to create request with auth. Unknown failure
.
\n
"
);
break
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment