Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
John McEleney
/
mailutils
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
9bc619bf
...
9bc619bfce62ca2599daf9478c5e590874c532be
authored
2003-01-26 13:46:16 +0000
by
Sergey Poznyakoff
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
Removed newline from the syslog diagnostic message.
1 parent
c22bec80
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
imap4d/auth_gss.c
imap4d/auth_gss.c
View file @
9bc619b
...
...
@@ -48,7 +48,7 @@ display_status_1 (char *m, OM_uint32 code, int type)
{
maj_stat
=
gss_display_status
(
&
min_stat
,
code
,
type
,
GSS_C_NULL_OID
,
&
msg_ctx
,
&
msg
);
syslog
(
LOG_ERR
,
_
(
"GSS-API error %s: %s
\n
"
),
m
,
(
char
*
)
msg
.
value
);
syslog
(
LOG_ERR
,
_
(
"GSS-API error %s: %s"
),
m
,
(
char
*
)
msg
.
value
);
gss_release_buffer
(
&
min_stat
,
&
msg
);
}
while
(
msg_ctx
);
...
...
Please
register
or
sign in
to post a comment