From 0171de7653dbc409f8a936e80a8c9bc3ab3d1bdb Mon Sep 17 00:00:00 2001 From: Andreas Kotes Date: Wed, 16 Apr 2014 15:20:49 +0200 Subject: version 0.19 * fixed version string display * failing on SSL verify failures * removed ignssl option * reenabled ciphers options * added verifyssl option (cert verify depth) --- vchat-protocol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vchat-protocol.c') diff --git a/vchat-protocol.c b/vchat-protocol.c index e676b28..6cf9724 100755 --- a/vchat-protocol.c +++ b/vchat-protocol.c @@ -35,7 +35,7 @@ #include "vchat-ssl.h" /* version of this module */ -char *vchat_io_version = "$Id$"; +const char *vchat_io_version = "$Id$"; /* externally used variables */ int serverfd = -1; -- cgit v1.2.3 From edba804a0cbd19e5c971c55661bcf83967573906 Mon Sep 17 00:00:00 2001 From: Andreas Kotes Date: Wed, 16 Apr 2014 15:28:51 +0200 Subject: fix version strings --- vchat-protocol.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'vchat-protocol.c') diff --git a/vchat-protocol.c b/vchat-protocol.c index 6cf9724..b077411 100755 --- a/vchat-protocol.c +++ b/vchat-protocol.c @@ -35,7 +35,7 @@ #include "vchat-ssl.h" /* version of this module */ -const char *vchat_io_version = "$Id$"; +const char *vchat_io_version = "vchat-protocol.c $Id$"; /* externally used variables */ int serverfd = -1; -- cgit v1.2.3