From: Richard M. Stallman Date: Fri, 30 Jun 1995 01:07:22 +0000 (+0000) Subject: (ange-ftp-normal-login): if ange-ftp-smart-gateway X-Git-Tag: emacs-19.34~3418 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=222e97c1b9587d2b262b9eefdbef0dd6b5b7ebf4;p=emacs.git (ange-ftp-normal-login): if ange-ftp-smart-gateway is set but ange-ftp-gateway-host is nil, use user@host proxy protocol. --- diff --git a/lisp/ange-ftp.el b/lisp/ange-ftp.el index 0da2944c5fa..512d357e808 100644 --- a/lisp/ange-ftp.el +++ b/lisp/ange-ftp.el @@ -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