diff lib/https.c @ 174:e643d287fe32

2003-6-8 Brian Masney <masneyb@gftp.org> * lib/gftp.h lib/sslcommon.c - added ssl_register_module(). This function registers the configuration variables for the SSL engine. Right now, the only variable is the entropy source * lib/https.c (https_register_module) - call ssl_register_module(). Multiple protocols will be able to call this function, it will only be initialized once
author masneyb
date Mon, 09 Jun 2003 01:07:33 +0000
parents 4c288d05b26a
children 13ca1defdc75
line wrap: on
line diff
--- a/lib/https.c	Mon Jun 09 00:53:20 2003 +0000
+++ b/lib/https.c	Mon Jun 09 01:07:33 2003 +0000
@@ -54,6 +54,9 @@
 void
 https_register_module (void)
 {
+#ifdef USE_SSL
+  ssl_register_module ();
+#endif
 }