diff --git a/BitKeeper/etc/logging_ok b/BitKeeper/etc/logging_ok
index 16db163b051156f459e2cbe8687464d2c794c049..2eaef09868fb57f13e3ffd12ad82cbc928ace46a 100644
--- a/BitKeeper/etc/logging_ok
+++ b/BitKeeper/etc/logging_ok
@@ -25,3 +25,4 @@ zak@balfor.local
 monty@narttu.
 monty@mashka.mysql.fi
 bar@bar.udmsearch.izhnet.ru
+salle@geopard.online.bg
diff --git a/include/sslopt-usage.h b/include/sslopt-usage.h
index 5b2b4a88709bc87757e61d58a1a0b9469ac9e890..406d94572b8660525a3b431b78f4190ce86dbeab 100644
--- a/include/sslopt-usage.h
+++ b/include/sslopt-usage.h
@@ -15,7 +15,7 @@
    Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
    MA 02111-1307, USA */
 
-#ifdef OPEN_SSL
+#ifdef HAVE_OPENSSL
    puts("\
    --ssl                Use SSL for connection (automatically set with other flags\n\
    --ssl-key            X509 key in PEM format (implies --ssl)\n\
diff --git a/scripts/mysqlhotcopy.sh b/scripts/mysqlhotcopy.sh
index 45f1f1ed24af58115eb5b3a614dc6d413186f370..707b4fc481cfd6d46aa86b28b841af2adae6bf66 100644
--- a/scripts/mysqlhotcopy.sh
+++ b/scripts/mysqlhotcopy.sh
@@ -156,6 +156,7 @@ $opt{allowold} = 1 if $opt{keepold};
 
 # --- connect to the database ---
 my $dsn = ";host=localhost";
+$dsn = ";host=127.0.0.1" if $opt{port};    # use TCP/IP if port was given 
 $dsn .= ";port=$opt{port}" if $opt{port};
 $dsn .= ";mysql_socket=$opt{socket}" if $opt{socket};