From owner-svn-src-head@FreeBSD.ORG Thu Mar 7 02:40:15 2013 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by hub.freebsd.org (Postfix) with ESMTP id 0A843F9; Thu, 7 Mar 2013 02:40:15 +0000 (UTC) (envelope-from seanwbruno@gmail.com) Received: from mail-pb0-f43.google.com (mail-pb0-f43.google.com [209.85.160.43]) by mx1.freebsd.org (Postfix) with ESMTP id B98B898A; Thu, 7 Mar 2013 02:40:14 +0000 (UTC) Received: by mail-pb0-f43.google.com with SMTP id md12so6948186pbc.16 for ; Wed, 06 Mar 2013 18:40:14 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:subject:from:reply-to:to:cc:in-reply-to:references :content-type:date:message-id:mime-version:x-mailer :content-transfer-encoding; bh=FQdu/TR57rKlCphO75DInoYIFzdoYI50YLtxrAPiWx0=; b=SjtxICXHcP7RfQ3gSWGODHdb3vM7ssicayxJzZ/BsKkzjz42eheTruyV0XXO8pj3md R9bZ6KHDTLUhpGq2znqEpV/+bIPwIr0uptxy5aFlXZRj1QDSPMoaUIJbefjXgLy3tnop ALFAwnDJWnGwyL/1iyEDcA6AupDQY5/nX1QbyWtNwwEWYKDYP6FsMgD2oq/UuBwCCVTy GmaajXzPUr1GL3yh4k4hreL7ERH8GD5sNWCd4Htl0oJrt/ZwjAkvlBYDX4dD8+Nbk1A0 r8NNnODZjtREYLyLZ/o1Zmx6BtPUluLMgS7sowMDFO5O2FTH+MZSYD4AuqSfYl/pLDK4 UaBw== X-Received: by 10.66.116.104 with SMTP id jv8mr478846pab.136.1362624014094; Wed, 06 Mar 2013 18:40:14 -0800 (PST) Received: from [192.168.43.121] (10.sub-70-199-80.myvzw.com. [70.199.80.10]) by mx.google.com with ESMTPS id eg1sm22794945pbb.33.2013.03.06.18.40.11 (version=SSLv3 cipher=RC4-SHA bits=128/128); Wed, 06 Mar 2013 18:40:13 -0800 (PST) Subject: Re: svn commit: r247904 - head/crypto/openssh From: Sean Bruno To: Dag-Erling =?ISO-8859-1?Q?Sm=F8rgrav?= In-Reply-To: <201303062322.r26NMebp009010@svn.freebsd.org> References: <201303062322.r26NMebp009010@svn.freebsd.org> Content-Type: text/plain; charset="ISO-8859-1" Date: Wed, 06 Mar 2013 18:40:08 +0000 Message-ID: <1362595208.1429.1.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 8bit Cc: svn-src-head@freebsd.org, svn-src-all@freebsd.org, src-committers@freebsd.org X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list Reply-To: sbruno@freebsd.org List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 07 Mar 2013 02:40:15 -0000 On Wed, 2013-03-06 at 23:22 +0000, Dag-Erling Smørgrav wrote: > Author: des > Date: Wed Mar 6 23:22:40 2013 > New Revision: 247904 > URL: http://svnweb.freebsd.org/changeset/base/247904 > > Log: > Remove strnvis(), strvis(), strvisx(). I don't think that this is the "right" solution as it results in a "derped" version of ssh. I've been running *without* r247904 and the following patch all day long without issue: Index: crypto/openssh/config.h =================================================================== --- crypto/openssh/config.h (revision 247893) +++ crypto/openssh/config.h (working copy) @@ -956,7 +956,7 @@ #define HAVE_STRNLEN 1 /* Define to 1 if you have the `strnvis' function. */ -#define HAVE_STRNVIS 1 +/* #undef HAVE_STRNVIS */ /* Define to 1 if you have the `strptime' function. */ #define HAVE_STRPTIME 1 Sean