]> git.eshelyaron.com Git - emacs.git/commitdiff
(ange-ftp-normal-login): if ange-ftp-smart-gateway
authorRichard M. Stallman <rms@gnu.org>
Fri, 30 Jun 1995 01:07:22 +0000 (01:07 +0000)
committerRichard M. Stallman <rms@gnu.org>
Fri, 30 Jun 1995 01:07:22 +0000 (01:07 +0000)
is set but ange-ftp-gateway-host is nil, use user@host proxy protocol.

lisp/ange-ftp.el

index 0da2944c5fa91050180959ca3bde28da903f60d6..512d357e808903f307c753da401e4cda62653955 100644 (file)
@@ -1861,9 +1861,10 @@ host specified in ``ange-ftp-gateway-host''."
 (defun ange-ftp-normal-login (host user pass account proc)
   "Connect to the FTP-server on HOST as USER using PASSWORD and ACCOUNT.
 PROC is the process to the FTP-client."
-  (let ((result (ange-ftp-raw-send-cmd
+  (let* ((nshost (ange-ftp-nslookup-host host))
+        (result (ange-ftp-raw-send-cmd
                 proc
-                (format "open %s" (ange-ftp-nslookup-host host))
+                (format "open %s" nshost)
                 (format "Opening FTP connection to %s" host))))
     (or (car result)
        (ange-ftp-error host user
@@ -1871,7 +1872,9 @@ PROC is the process to the FTP-client."
                                (cdr result))))
     (setq result (ange-ftp-raw-send-cmd
                  proc
-                 (format "user \"%s\" %s %s" user pass account)
+                 (if (ange-ftp-use-smart-gateway-p host)
+                     (format "user \"%s\"@%s %s %s" user nshost pass account)
+                   (format "user \"%s\" %s %s" user pass account))
                  (format "Logging in as user %s@%s" user host)))
     (or (car result)
        (progn