summaryrefslogtreecommitdiffstats
path: root/src/openvpn/options.h
diff options
context:
space:
mode:
authorJames Yonan <james@openvpn.net>2014-05-08 16:50:36 -0600
committerGert Doering <gert@greenie.muc.de>2014-05-20 11:11:42 +0200
commit5b17803ebbb0989cf66033387dfa1ae7cb41bb25 (patch)
tree0375f68426d90e5320c38f8da67cc624d81dfb84 /src/openvpn/options.h
parente583cae83b8c2590dad0c4ce238bc2a45196f914 (diff)
downloadopenvpn-5b17803ebbb0989cf66033387dfa1ae7cb41bb25.tar.gz
openvpn-5b17803ebbb0989cf66033387dfa1ae7cb41bb25.tar.xz
openvpn-5b17803ebbb0989cf66033387dfa1ae7cb41bb25.zip
Fixed some compile issues with show_library_versions()
* Refactored show_library_versions to work around the fact that some compilers (such as MSVC 2008) can't handle #ifdefs inside of macro references. * Declare show_library_versions() in options.h because it's referenced by other files such as openvpn.c. * Declare get_ssl_library_version() as returning const char *, to avoid loss of const qualifier in ssl_openssl.c. Signed-off-by: James Yonan <james@openvpn.net> Acked-by: Gert Doering <gert@greenie.muc.de> Message-Id: <1399589436-8730-7-git-send-email-james@openvpn.net> URL: http://article.gmane.org/gmane.network.openvpn.devel/8711 Signed-off-by: Gert Doering <gert@greenie.muc.de> (cherry picked from commit a91a2d6ad7b139ec78d61c8616b8447847e9ecc6)
Diffstat (limited to 'src/openvpn/options.h')
-rw-r--r--src/openvpn/options.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/openvpn/options.h b/src/openvpn/options.h
index 092eac4..a3b76d3 100644
--- a/src/openvpn/options.h
+++ b/src/openvpn/options.h
@@ -691,6 +691,8 @@ void notnull (const char *arg, const char *description);
void usage_small (void);
+void show_library_versions(const unsigned int flags);
+
void init_options (struct options *o, const bool init_gc);
void uninit_options (struct options *o);