From owner-freebsd-stable Thu May 11 20:46:53 2000 Delivered-To: freebsd-stable@freebsd.org Received: from mike.dhis.org (usr2-d10.stk.cwnet.com [209.21.20.58]) by hub.freebsd.org (Postfix) with ESMTP id 9790337BCB0 for ; Thu, 11 May 2000 20:46:48 -0700 (PDT) (envelope-from mmuir@es.co.nz) Received: by mike.dhis.org (Postfix, from userid 1001) id 3AB1F1F4E; Thu, 11 May 2000 20:47:13 -0700 (PDT) To: freebsd-stable@FreeBSD.ORG Subject: Breakage in world build for SED. + FIX. Message-Id: <20000512034713.3AB1F1F4E@mike.dhis.org> Date: Thu, 11 May 2000 20:47:13 -0700 (PDT) From: mmuir@es.co.nz (Mike C. Muir) Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG Theres the smallest possible break in stable as of Thu May 11 20:40:11 PDT 2000 where a variable has been typo'd: /usr/src/usr.bin/sed/main.c: In function `main': /usr/src/usr.bin/sed/main.c:129: `temp_arg' undeclared (first use in this function) /usr/src/usr.bin/sed/main.c:129: (Each undeclared identifier is reported only once /usr/src/usr.bin/sed/main.c:129: for each function it appears in.) /usr/src/usr.bin/sed/main.c:117: warning: unused variable `tmp_arg' Here's a unified diff to fix it incase you dont want to open er up: ***START*** --- main.c Thu May 11 20:38:05 2000 +++ old_main.c Thu May 11 20:38:45 2000 @@ -114,7 +114,7 @@ char *argv[]; { int c, fflag; - char *temp_arg; + char *tmp_arg; (void) setlocale(LC_ALL, ""); ***END*** -mike. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message