Commit 9bc619bf 9bc619bfce62ca2599daf9478c5e590874c532be by Sergey Poznyakoff

Removed newline from the syslog diagnostic message.

1 parent c22bec80
...@@ -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);
......