Fossil SCM
Minor code cleanup: reformat code to 80 char line length
Commit
6aa5b85f0eb74b2ed1820056dde4ff778d552329
Parent
636cc595e192f72…
1 file changed
+4
-1
+4
-1
| --- src/http_ssl.c | ||
| +++ src/http_ssl.c | ||
| @@ -84,11 +84,14 @@ | ||
| 84 | 84 | /* |
| 85 | 85 | ** When a server requests a client certificate that hasn't been provided, |
| 86 | 86 | ** display a warning message explaining what to do next. |
| 87 | 87 | */ |
| 88 | 88 | static int ssl_client_cert_callback(SSL *ssl, X509 **x509, EVP_PKEY **pkey){ |
| 89 | - fossil_warning("The remote server requested a client certificate for authentication. Specify the pathname to a file containing the PEM encoded certificate and private key with the --ssl-identity option or the ssl-identity setting."); | |
| 89 | + fossil_warning("The remote server requested a client certificate for " | |
| 90 | + "authentication. Specify the pathname to a file containing the PEM " | |
| 91 | + "encoded certificate and private key with the --ssl-identity option " | |
| 92 | + "or the ssl-identity setting."); | |
| 90 | 93 | return 0; /* no cert available */ |
| 91 | 94 | } |
| 92 | 95 | |
| 93 | 96 | /* |
| 94 | 97 | ** Call this routine once before any other use of the SSL interface. |
| 95 | 98 |
| --- src/http_ssl.c | |
| +++ src/http_ssl.c | |
| @@ -84,11 +84,14 @@ | |
| 84 | /* |
| 85 | ** When a server requests a client certificate that hasn't been provided, |
| 86 | ** display a warning message explaining what to do next. |
| 87 | */ |
| 88 | static int ssl_client_cert_callback(SSL *ssl, X509 **x509, EVP_PKEY **pkey){ |
| 89 | fossil_warning("The remote server requested a client certificate for authentication. Specify the pathname to a file containing the PEM encoded certificate and private key with the --ssl-identity option or the ssl-identity setting."); |
| 90 | return 0; /* no cert available */ |
| 91 | } |
| 92 | |
| 93 | /* |
| 94 | ** Call this routine once before any other use of the SSL interface. |
| 95 |
| --- src/http_ssl.c | |
| +++ src/http_ssl.c | |
| @@ -84,11 +84,14 @@ | |
| 84 | /* |
| 85 | ** When a server requests a client certificate that hasn't been provided, |
| 86 | ** display a warning message explaining what to do next. |
| 87 | */ |
| 88 | static int ssl_client_cert_callback(SSL *ssl, X509 **x509, EVP_PKEY **pkey){ |
| 89 | fossil_warning("The remote server requested a client certificate for " |
| 90 | "authentication. Specify the pathname to a file containing the PEM " |
| 91 | "encoded certificate and private key with the --ssl-identity option " |
| 92 | "or the ssl-identity setting."); |
| 93 | return 0; /* no cert available */ |
| 94 | } |
| 95 | |
| 96 | /* |
| 97 | ** Call this routine once before any other use of the SSL interface. |
| 98 |