summaryrefslogtreecommitdiffstats
path: root/source3/smbd/ssl.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-07-29 03:08:05 +0000
committerAndrew Tridgell <tridge@samba.org>1998-07-29 03:08:05 +0000
commit64578c0589a3a741f81fb55c16eeb882128da00b (patch)
tree8b650156e44e4d39af8625185d857a88789b8074 /source3/smbd/ssl.c
parentc48b3fce6be6d5d952cbcda0ddae223dda5a576f (diff)
downloadsamba-64578c0589a3a741f81fb55c16eeb882128da00b.tar.gz
samba-64578c0589a3a741f81fb55c16eeb882128da00b.tar.xz
samba-64578c0589a3a741f81fb55c16eeb882128da00b.zip
merge from the autoconf2 branch to the main branch
(This used to be commit 3bda7ac417107a7b01d91805ca71c4330657ed21)
Diffstat (limited to 'source3/smbd/ssl.c')
-rw-r--r--source3/smbd/ssl.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/smbd/ssl.c b/source3/smbd/ssl.c
index 1bb89f05b1c..68b45016b82 100644
--- a/source3/smbd/ssl.c
+++ b/source3/smbd/ssl.c
@@ -19,7 +19,7 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
-#ifdef USE_SSL /* should always be defined if this module is compiled */
+#ifdef WITH_SSL /* should always be defined if this module is compiled */
#include "includes.h"
#include <ssl.h>
@@ -261,6 +261,6 @@ char *reqHosts, *resignHosts;
return 1;
}
-#else /* USE_SSL */
+#else /* WITH_SSL */
void ssl_dummy(void) {;} /* So some compilers don't complain. */
-#endif /* USE_SSL */
+#endif /* WITH_SSL */