]> git.eshelyaron.com Git - emacs.git/commitdiff
Fix Bug#33141
authorMichael Albinus <michael.albinus@gmx.de>
Wed, 24 Oct 2018 18:56:40 +0000 (20:56 +0200)
committerAndreas Schwab <schwab@linux-m68k.org>
Mon, 19 Nov 2018 20:48:59 +0000 (21:48 +0100)
* lisp/net/tramp.el (tramp-make-tramp-file-name): Avoid check for
empty method with simplified `tramp-syntax'.  (Bug#33141)

lisp/net/tramp.el

index e9f5f7d43476ba36bf5243aeb8ca687dd126b3ba..5fa9f9a44d4a20c5e53db1a32581b721ced21f89 100644 (file)
@@ -1374,7 +1374,9 @@ default values are used."
     (method user domain host port localname &optional hop)
   "Constructs a Tramp file name from METHOD, USER, HOST and LOCALNAME.
 When not nil, optional DOMAIN, PORT and HOP are used."
-  (when (zerop (length method))
+  ;; Unless `tramp-syntax' is `simplified', we need a method.
+  (when (and (not (zerop (length tramp-postfix-method-format)))
+             (zerop (length method)))
     (signal 'wrong-type-argument (list 'stringp method)))
   (concat tramp-prefix-format hop
          (unless (zerop (length tramp-postfix-method-format))