Skip to content

Commit

Permalink
proper use of newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
bagder committed Jun 9, 2006
1 parent 7929600 commit 8df5dcb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/ssluse.c
Original file line number Diff line number Diff line change
Expand Up @@ -1212,11 +1212,11 @@ Curl_ossl_connect_step1(struct connectdata *conn,
inform about failures of setting it */
if (!SSL_CTX_callback_ctrl(connssl->ctx, SSL_CTRL_SET_MSG_CALLBACK,
(void (*)(void))ssl_tls_trace)) {
infof(data, "SSL: couldn't set callback!");
infof(data, "SSL: couldn't set callback!\n");
}
else if (!SSL_CTX_ctrl(connssl->ctx, SSL_CTRL_SET_MSG_CALLBACK_ARG, 0,
conn)) {
infof(data, "SSL: couldn't set callback argument!");
infof(data, "SSL: couldn't set callback argument!\n");
}
}
#endif
Expand Down

0 comments on commit 8df5dcb

Please sign in to comment.