From owner-svn-src-all@FreeBSD.ORG Fri Feb 14 20:34:25 2014 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 0D6A7D7B; Fri, 14 Feb 2014 20:34:25 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mx1.freebsd.org (Postfix) with ESMTPS id EB83413E4; Fri, 14 Feb 2014 20:34:24 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s1EKYO9Y022424; Fri, 14 Feb 2014 20:34:24 GMT (envelope-from brueffer@svn.freebsd.org) Received: (from brueffer@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s1EKYOob022423; Fri, 14 Feb 2014 20:34:24 GMT (envelope-from brueffer@svn.freebsd.org) Message-Id: <201402142034.s1EKYOob022423@svn.freebsd.org> From: Christian Brueffer Date: Fri, 14 Feb 2014 20:34:24 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r261900 - head/usr.sbin/ppp X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.17 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 14 Feb 2014 20:34:25 -0000 Author: brueffer Date: Fri Feb 14 20:34:24 2014 New Revision: 261900 URL: http://svnweb.freebsd.org/changeset/base/261900 Log: In chat_UpdateSet(), initialize the input buffer to prevent stale data from previous timed out commands. PR: 186530 Submitted by: Alexander Zagrebin Reviewed by: brian MFC after: 1 week Modified: head/usr.sbin/ppp/chat.c Modified: head/usr.sbin/ppp/chat.c ============================================================================== --- head/usr.sbin/ppp/chat.c Fri Feb 14 20:11:06 2014 (r261899) +++ head/usr.sbin/ppp/chat.c Fri Feb 14 20:34:24 2014 (r261900) @@ -154,6 +154,11 @@ chat_UpdateSet(struct fdescriptor *d, fd else { /* c->state = CHAT_EXPECT; */ c->argptr = &arg_term; + /* + We have to clear the input buffer, because it contains output + from the previous (timed out) command. + */ + c->bufstart = c->bufend; } c->TimedOut = 0; }