Removed newline from the syslog diagnostic message.
Showing
1 changed file
with
1 additions
and
1 deletions
... | @@ -48,7 +48,7 @@ display_status_1 (char *m, OM_uint32 code, int type) | ... | @@ -48,7 +48,7 @@ display_status_1 (char *m, OM_uint32 code, int type) |
48 | { | 48 | { |
49 | maj_stat = gss_display_status (&min_stat, code, | 49 | maj_stat = gss_display_status (&min_stat, code, |
50 | type, GSS_C_NULL_OID, &msg_ctx, &msg); | 50 | type, GSS_C_NULL_OID, &msg_ctx, &msg); |
51 | syslog (LOG_ERR, _("GSS-API error %s: %s\n"), m, (char *) msg.value); | 51 | syslog (LOG_ERR, _("GSS-API error %s: %s"), m, (char *) msg.value); |
52 | gss_release_buffer (&min_stat, &msg); | 52 | gss_release_buffer (&min_stat, &msg); |
53 | } | 53 | } |
54 | while (msg_ctx); | 54 | while (msg_ctx); | ... | ... |
-
Please register or sign in to post a comment