From owner-svn-src-all@FreeBSD.ORG Fri Jan 13 09:10:59 2012 Return-Path: Delivered-To: svn-src-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 2B877106566C; Fri, 13 Jan 2012 09:10:59 +0000 (UTC) (envelope-from kevlo@FreeBSD.org) Received: from ns.kevlo.org (kevlo.org [220.128.136.52]) by mx1.freebsd.org (Postfix) with ESMTP id B97758FC1B; Fri, 13 Jan 2012 09:10:57 +0000 (UTC) Received: from [127.0.0.1] (kevlo@kevlo.org [220.128.136.52]) by ns.kevlo.org (8.14.3/8.14.3) with ESMTP id q0D9AuRv009970; Fri, 13 Jan 2012 17:10:56 +0800 (CST) From: Kevin Lo To: Sergey Kandaurov In-Reply-To: References: <201201130651.q0D6pF0l046741@svn.freebsd.org> Content-Type: text/plain; charset="us-ascii" Date: Fri, 13 Jan 2012 17:10:56 +0800 Message-ID: <1326445856.1878.1.camel@esl.kevlo.org> Mime-Version: 1.0 X-Mailer: Evolution 2.32.1 FreeBSD GNOME Team Port Content-Transfer-Encoding: 7bit Cc: svn-src-head@FreeBSD.org, svn-src-all@FreeBSD.org, src-committers@FreeBSD.org Subject: Re: svn commit: r230044 - in head: usr.bin/mail usr.bin/tftp usr.bin/unzip usr.sbin/config usr.sbin/lpr/lpc usr.sbin/timed/timedc X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 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, 13 Jan 2012 09:10:59 -0000 On Fri, 2012-01-13 at 11:24 +0300, Sergey Kandaurov wrote: > On 13 January 2012 10:51, Kevin Lo wrote: > > Author: kevlo > > Date: Fri Jan 13 06:51:15 2012 > > New Revision: 230044 > > URL: http://svn.freebsd.org/changeset/base/230044 > > > > Log: > > fgets(3) returns a pointer, so compare against NULL, not integer 0. > > > [...] > > Modified: head/usr.sbin/config/mkmakefile.c > > ============================================================================== > > --- head/usr.sbin/config/mkmakefile.c Fri Jan 13 06:18:23 2012 (r230043) > > +++ head/usr.sbin/config/mkmakefile.c Fri Jan 13 06:51:15 2012 (r230044) > > @@ -1,5 +1,5 @@ > > /* > > - * Copyright (c) 1993, 19801990 > > + * Copyright (c) 1980, 1993 > > This should be rather "Copyright (c) 1980, 1990, 1993" > It was "1980,1990" until 4.4BSD-Alpha (and i386bsd), > then changed to "1993, 19801990" in 4.4BSD-Lite. My bad. This change should be done in a separate commit. Just committed the fix to HEAD, thanks for pointing that out. Kevin