Function: ange-ftp-set-passwd

ange-ftp-set-passwd is an interactive and byte-compiled function defined in ange-ftp.el.gz.

Signature

(ange-ftp-set-passwd HOST USER PASSWORD)

Documentation

For a given HOST and USER, set or change the associated PASSWORD.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/ange-ftp.el.gz
(defun ange-ftp-set-passwd (host user password)
  "For a given HOST and USER, set or change the associated PASSWORD."
  (interactive (list (read-string "Host: ")
		     (read-string "User: ")
		     (read-passwd "Password: ")))
  (puthash (ange-ftp-generate-passwd-key host user)
	   password ange-ftp-passwd-hashtable))