From: Nick Zitzmann Date: Wed, 31 Jul 2013 02:32:18 +0000 (-0600) Subject: darwinssl: added LFs to some strings passed into infof() X-Git-Tag: curl-7_32_0~45 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9dedcbf9ec47b436a43c1e4744921b9e620e5fe2;p=thirdparty%2Fcurl.git darwinssl: added LFs to some strings passed into infof() (This doesn't need to appear in the release notes.) I noticed a few places where infof() was called, and there should've been an LF at the end of the string, but there wasn't. --- diff --git a/lib/curl_darwinssl.c b/lib/curl_darwinssl.c index 6a23db47b5..4ecf2d93f0 100644 --- a/lib/curl_darwinssl.c +++ b/lib/curl_darwinssl.c @@ -983,7 +983,7 @@ static CURLcode darwinssl_connect_step1(struct connectdata *conn, if(data->set.str[STRING_KEY]) { infof(data, "WARNING: SSL: CURLOPT_SSLKEY is ignored by Secure " - "Transport. The private key must be in the Keychain."); + "Transport. The private key must be in the Keychain.\n"); } if(data->set.str[STRING_CERT]) { @@ -1089,7 +1089,7 @@ static CURLcode darwinssl_connect_step1(struct connectdata *conn, err = SSLSetPeerDomainName(connssl->ssl_ctx, conn->host.name, strlen(conn->host.name)); if(err != noErr) { - infof(data, "WARNING: SSL: SSLSetPeerDomainName() failed: OSStatus %d", + infof(data, "WARNING: SSL: SSLSetPeerDomainName() failed: OSStatus %d\n", err); } }