Date: Mon, 6 Jun 2016 13:32:15 +0000 (UTC) From: "Pedro F. Giffuni" <pfg@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-9@freebsd.org Subject: svn commit: r301507 - stable/9/sbin/dhclient Message-ID: <201606061332.u56DWFpK047234@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: pfg Date: Mon Jun 6 13:32:15 2016 New Revision: 301507 URL: https://svnweb.freebsd.org/changeset/base/301507 Log: MFC r301235: dhclient(1): correct obvious mismatch in get_char(). Correct switch between current and previous line buffers when encountering a carriage return in the input. CID: 1305719 Obtained from: OpenBSD (CVS rev. 1.30) Modified: stable/9/sbin/dhclient/conflex.c Directory Properties: stable/9/sbin/dhclient/ (props changed) Modified: stable/9/sbin/dhclient/conflex.c ============================================================================== --- stable/9/sbin/dhclient/conflex.c Mon Jun 6 13:31:28 2016 (r301506) +++ stable/9/sbin/dhclient/conflex.c Mon Jun 6 13:32:15 2016 (r301507) @@ -97,8 +97,8 @@ get_char(FILE *cfile) cur_line = line2; prev_line = line1; } else { - cur_line = line2; - prev_line = line1; + cur_line = line1; + prev_line = line2; } line++; lpos = 1;
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201606061332.u56DWFpK047234>