diff --git a/lib/modules/Protocols.pmod/HTTP.pmod/Query.pike b/lib/modules/Protocols.pmod/HTTP.pmod/Query.pike
index bced213c5885185774f1c00b91524f1a48a1943e..b0fbb59da9c26efde23a79e6d339ee6bb0dbfe89 100644
--- a/lib/modules/Protocols.pmod/HTTP.pmod/Query.pike
+++ b/lib/modules/Protocols.pmod/HTTP.pmod/Query.pike
@@ -1,6 +1,6 @@
 #pike __REAL_VERSION__
 
-// $Id: Query.pike,v 1.48 2003/01/20 17:44:00 nilsson Exp $
+// $Id: Query.pike,v 1.49 2003/02/07 01:00:04 nilsson Exp $
 
 //!	Open and execute an HTTP query.
 
@@ -30,7 +30,7 @@ int timeout=120; // seconds
 
 // internal
 #if constant(SSL.sslfile) 
- import SSL.constants;
+ import SSL.Constants;
  SSL.sslfile ssl;
 #endif
 int(0..1) https = 0;
diff --git a/lib/modules/Protocols.pmod/LDAP.pmod/client.pike b/lib/modules/Protocols.pmod/LDAP.pmod/client.pike
index d7064358e5f8f2c950302c02aa6eaddd9f5d6edb..54afd18e388d1035c1b635181541c708a29a4edf 100644
--- a/lib/modules/Protocols.pmod/LDAP.pmod/client.pike
+++ b/lib/modules/Protocols.pmod/LDAP.pmod/client.pike
@@ -2,7 +2,7 @@
 
 // LDAP client protocol implementation for Pike.
 //
-// $Id: client.pike,v 1.46 2002/11/27 22:04:32 marcus Exp $
+// $Id: client.pike,v 1.47 2003/02/07 01:00:38 nilsson Exp $
 //
 // Honza Petrous, hop@unibase.cz
 //
@@ -75,7 +75,7 @@
 #include "ldap_errors.h"
 
 #if constant(SSL.sslfile)
-import SSL.constants;
+import SSL.Constants;
 #endif
 
 #ifdef LDAP_PROTOCOL_PROFILE
@@ -360,7 +360,7 @@ int _prof_gtim;
   void create(string|void url, object|void context)
   {
 
-    info = ([ "code_revision" : ("$Revision: 1.46 $"/" ")[1] ]);
+    info = ([ "code_revision" : ("$Revision: 1.47 $"/" ")[1] ]);
 
     if(!url || !sizeof(url))
       url = LDAP_DEFAULT_URL;