From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Andre Spiegel Newsgroups: gmane.emacs.devel Subject: Re: CVS with ssh Date: 24 Nov 2002 13:03:19 +0100 Sender: emacs-devel-admin@gnu.org Message-ID: <1038139399.530.25.camel@localhost> References: <15839.36791.777977.297843@nick.uklinux.net> <84isyo9cqj.fsf@lucy.cs.uni-dortmund.de> NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15 Content-Transfer-Encoding: 8bit X-Trace: main.gmane.org 1038139818 1700 80.91.224.249 (24 Nov 2002 12:10:18 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Sun, 24 Nov 2002 12:10:18 +0000 (UTC) Cc: emacs-devel@gnu.org Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18Fvab-0000RI-00 for ; Sun, 24 Nov 2002 13:10:17 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18Fvfi-00074i-00 for ; Sun, 24 Nov 2002 13:15:34 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 18FvUo-0000il-00; Sun, 24 Nov 2002 07:04:18 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10) id 18FvUD-0000dz-00 for emacs-devel@gnu.org; Sun, 24 Nov 2002 07:03:41 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10) id 18FvU7-0000ce-00 for emacs-devel@gnu.org; Sun, 24 Nov 2002 07:03:40 -0500 Original-Received: from mailout02.sul.t-online.com ([194.25.134.17]) by monty-python.gnu.org with esmtp (Exim 4.10) id 18FvU6-0000bj-00 for emacs-devel@gnu.org; Sun, 24 Nov 2002 07:03:34 -0500 Original-Received: from fwd04.sul.t-online.de by mailout02.sul.t-online.com with smtp id 18FvTz-00053F-0D; Sun, 24 Nov 2002 13:03:27 +0100 Original-Received: from [10.0.1.2] (520036110746-0001@[217.81.127.44]) by fmrl04.sul.t-online.com with esmtp id 18FvTs-24OjrsC; Sun, 24 Nov 2002 13:03:20 +0100 Original-To: Nick Roberts In-Reply-To: <84isyo9cqj.fsf@lucy.cs.uni-dortmund.de> X-Mailer: Ximian Evolution 1.2.0 X-Sender: 520036110746-0001@t-dialin.net Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:9644 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:9644 On Sat, 2002-11-23 at 22:51, Kai Großjohann wrote: > Nick Roberts writes: > > > When I use a cvs command I get the message : > > Warning: Remote host denied X11 forwarding. > > I put > > Host subversions.gnu.org > ForwardX11 no > > in ~/.ssh/config and stopped thinking about the issue. > > Maybe it's also possible to tell CVS to call ssh with the -x > argument, but I don't know how. It looks like ssh is writing a message to stdout that should actually go to stderr, so that CVS can suppress it. Kai is right that the easiest fix is to silence this particular message. To call ssh with -x from CVS, it may be sufficient to set the CVS_RSH variable to "/usr/bin/ssh -x", or you might write your own wrapper script that adds the option to the command, and put the location of that wrapper script into CVS_RSH. Which version of ssh is that? One should probably file a bug report about it.