From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: Matt McClure Newsgroups: gmane.emacs.devel,gmane.emacs.tramp Subject: TRAMP: Host name must not match method ... Date: Wed, 14 Aug 2013 09:06:55 -0400 Message-ID: NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 X-Trace: ger.gmane.org 1376485640 4111 80.91.229.3 (14 Aug 2013 13:07:20 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Wed, 14 Aug 2013 13:07:20 +0000 (UTC) To: emacs-devel@gnu.org, tramp-devel@gnu.org Original-X-From: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Wed Aug 14 15:07:24 2013 Return-path: Envelope-to: ged-emacs-devel@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1V9anH-0001gc-59 for ged-emacs-devel@m.gmane.org; Wed, 14 Aug 2013 15:07:19 +0200 Original-Received: from localhost ([::1]:39997 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V9anG-0000Og-MZ for ged-emacs-devel@m.gmane.org; Wed, 14 Aug 2013 09:07:18 -0400 Original-Received: from eggs.gnu.org ([2001:4830:134:3::10]:39583) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V9an8-0000OR-Cf for emacs-devel@gnu.org; Wed, 14 Aug 2013 09:07:15 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1V9an7-0008I6-4P for emacs-devel@gnu.org; Wed, 14 Aug 2013 09:07:10 -0400 Original-Received: from mail-pb0-x233.google.com ([2607:f8b0:400e:c01::233]:57138) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1V9amv-0008EB-Ld; Wed, 14 Aug 2013 09:06:57 -0400 Original-Received: by mail-pb0-f51.google.com with SMTP id jt11so9374750pbb.10 for ; Wed, 14 Aug 2013 06:06:56 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=VoPnglR9QWMAwi9ciXRZCAku51wKVKptqJT1LwryLaA=; b=BJWX6eVB+KZ/s+59E8blN27Lr3ScK/TCspBdqmhsYO+OyJsk433AqjvFhtpIdtL3Rb w8F6HtUXNWX5KkTRkBRoPjF04SSsKN+GjgaJoFheMWAi8cIhRpbmSDkj69X9hc1yndBm /a8BQ5qBjlNNuZaxA9PQyajDGX25KQJP4wm23LYJDEcigovyhT9GEzU57mRzWbfMoo26 gdGY5LI/3mSKCThS+HHbXnVFr1ypcwUEqU4lNabPv7iJV40Gjsefx/oven1fM4YKXNVj +OCGkHf7FjwP/pjvirdM55B3PB0W03+3nN0YUGm4ojIpOxlV32vJIaLwDDNgm3Y9hHuH NpIg== X-Received: by 10.67.23.36 with SMTP id hx4mr9939289pad.54.1376485615446; Wed, 14 Aug 2013 06:06:55 -0700 (PDT) Original-Received: by 10.69.0.35 with HTTP; Wed, 14 Aug 2013 06:06:55 -0700 (PDT) X-detected-operating-system: by eggs.gnu.org: Error: Malformed IPv6 address (bad octet value). X-Received-From: 2607:f8b0:400e:c01::233 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: "Emacs development discussions." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Original-Sender: emacs-devel-bounces+ged-emacs-devel=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.devel:162706 gmane.emacs.tramp:8385 Archived-At: Hi, In recent nightly builds of Emacs, I'm struggling to use TRAMP file paths as I've usually done. I'm getting an error message "Host name must not match method `ssh'". Here's a minimal test case: $ open -a Emacs --args -Q --no-site-file Then: C-x C-f /ssh:vagrant@192.168.33.2:/ RET Here's what *Messages* says: For information about GNU Emacs and the GNU system, type C-h C-a. Tramp: Opening connection for vagrant@192.168.33.2 using ssh... Tramp: Sending command `exec ssh -l vagrant -o ControlPath=/var/folders/_d/5p0jtv397qs73qr_frd6bw180000gn/T/tramp.9409723.%r@%h:%p -o ControlMaster=auto -o ControlPersist=no -e none 192.168.33.2' Tramp: Waiting for prompts from remote shell...done Tramp: Found remote shell prompt on `192.168.33.2' Tramp: Opening connection for vagrant@192.168.33.2 using ssh...done completion--some: Host name must not match method `ssh' Here's what M-x view-lossage says: C-x C-f C-a C-k / s s h : v a g r a n t @ 1 9 2 . 1 6 8 . 3 3 . 2 : / l I tried to reproduce more succinctly with: $ open -a Emacs --args -Q --no-site-file --eval '(find-file "/ssh:vagrant@192.168.33.2:/")' To my surprise, it worked as intended rather than failing. So maybe that's a clue. I found conversations on tramp-devel[1] and bug-gnu-emacs[2] that look related, but I haven't found the right combination of keystrokes to make it work for me. Is this a defect, or am I doing something wrong? If the latter, what should I do instead? [1]: http://thread.gmane.org/gmane.emacs.tramp/8323/focus=8327 [2]: http://thread.gmane.org/gmane.emacs.bugs/72217/focus=72255 -- Matt McClure http://matthewlmcclure.com http://www.mapmyfitness.com/profile/matthewlmcclure