summaryrefslogtreecommitdiff
path: root/vchat-client.c
diff options
context:
space:
mode:
authorDirk Engling <erdgeist@erdgeist.org>2022-05-18 00:03:41 +0200
committerDirk Engling <erdgeist@erdgeist.org>2022-05-18 00:03:41 +0200
commit92c67507e7b9b94341b3453b01a124f642aa68fb (patch)
treeb1060d20c938014681ecbc1ed8cdac78f0cbe92f /vchat-client.c
parentfb028f975b9d40680e0dfbc94081ac72ed7067f7 (diff)
Simplify tls code by removing all unused functions to allow for more generic helpers that can be used across lib wrappers
Diffstat (limited to 'vchat-client.c')
-rwxr-xr-xvchat-client.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/vchat-client.c b/vchat-client.c
index 39b42d9..65cc335 100755
--- a/vchat-client.c
+++ b/vchat-client.c
@@ -440,8 +440,8 @@ void versions() {
440 puts (vchat_io_version); 440 puts (vchat_io_version);
441 puts (vchat_us_version); 441 puts (vchat_us_version);
442 puts (vchat_cm_version); 442 puts (vchat_cm_version);
443 puts (vchat_ssl_version); 443 puts (vchat_tls_version);
444 puts (vchat_ssl_version_external); 444 puts (vchat_tls_version_external);
445} 445}
446 446
447/* main - d'oh */ 447/* main - d'oh */
@@ -457,7 +457,7 @@ main (int argc, char **argv)
457 loadconfig (getstroption (CF_CONFIGFILE)); 457 loadconfig (getstroption (CF_CONFIGFILE));
458 458
459 /* make SSL version used visible */ 459 /* make SSL version used visible */
460 vchat_ssl_get_version_external(); 460 vchat_tls_get_version_external();
461 461
462 /* parse commandline */ 462 /* parse commandline */
463 while (cmdsunparsed) { 463 while (cmdsunparsed) {