summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDirk Engling <erdgeist@erdgeist.org>2022-05-25 00:23:57 +0200
committerDirk Engling <erdgeist@erdgeist.org>2022-05-25 00:23:57 +0200
commit6e9a63961b0d19f8c701d527cf49f0be5a64fd8f (patch)
treebb63a6787bc6af229855dd4b7e2a5c6560568082
parent0bd0d4e6db2093186e91aa023865f16c793854e2 (diff)
formatter
-rwxr-xr-xvchat-tls.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vchat-tls.c b/vchat-tls.c
index f326b91..eaa12f4 100755
--- a/vchat-tls.c
+++ b/vchat-tls.c
@@ -283,9 +283,9 @@ int vc_openssl_connect(int serverfd, vc_x509store_t *vc_store) {
283 SSL_CIPHER_description(cipher, cipher_desc, TMPSTRSIZE)); 283 SSL_CIPHER_description(cipher, cipher_desc, TMPSTRSIZE));
284 writecf(FS_SERV, tmpstr); 284 writecf(FS_SERV, tmpstr);
285 } else { 285 } else {
286 snprintf( 286 snprintf(tmpstr, TMPSTRSIZE,
287 tmpstr, TMPSTRSIZE, 287 "[SSL ERROR ] Cipher not known / SSL object can't be "
288 "[SSL ERROR ] Cipher not known / SSL object can't be queried!"); 288 "queried!");
289 writecf(FS_ERR, tmpstr); 289 writecf(FS_ERR, tmpstr);
290 } 290 }
291 291