From: David Woodhouse Date: Thu, 30 May 2013 12:30:07 +0000 (+0100) Subject: Add missing newline on error message X-Git-Tag: v5.01~16 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=2d541c442b2a55c9326c1318951dfa99e952316f;p=users%2Fdwmw2%2Fopenconnect.git Add missing newline on error message Signed-off-by: David Woodhouse --- diff --git a/gnutls.c b/gnutls.c index e881ce63..3cf72315 100644 --- a/gnutls.c +++ b/gnutls.c @@ -119,7 +119,7 @@ int openconnect_SSL_read(struct openconnect_info *vpninfo, char *buf, size_t len int maxfd = vpninfo->ssl_fd; if (done != GNUTLS_E_AGAIN) { - vpn_progress(vpninfo, PRG_ERR, _("Failed to read from SSL socket: %s"), + vpn_progress(vpninfo, PRG_ERR, _("Failed to read from SSL socket: %s\n"), gnutls_strerror(done)); return -EIO; } else {