From owner-svn-src-head@FreeBSD.ORG Sat Jun 6 13:13:40 2015 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4F68E455; Sat, 6 Jun 2015 13:13:40 +0000 (UTC) (envelope-from bapt@FreeBSD.org) 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)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 3DD771AFA; Sat, 6 Jun 2015 13:13:40 +0000 (UTC) (envelope-from bapt@FreeBSD.org) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t56DDeex036042; Sat, 6 Jun 2015 13:13:40 GMT (envelope-from bapt@FreeBSD.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t56DDd0W036040; Sat, 6 Jun 2015 13:13:39 GMT (envelope-from bapt@FreeBSD.org) Message-Id: <201506061313.t56DDd0W036040@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: bapt set sender to bapt@FreeBSD.org using -f From: Baptiste Daroussin Date: Sat, 6 Jun 2015 13:13:39 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r284070 - head/usr.bin/mail X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list 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: Sat, 06 Jun 2015 13:13:40 -0000 Author: bapt Date: Sat Jun 6 13:13:39 2015 New Revision: 284070 URL: https://svnweb.freebsd.org/changeset/base/284070 Log: Add const to the copyright variable Bump WARNS to level 2 Modified: head/usr.bin/mail/Makefile head/usr.bin/mail/main.c Modified: head/usr.bin/mail/Makefile ============================================================================== --- head/usr.bin/mail/Makefile Sat Jun 6 13:09:49 2015 (r284069) +++ head/usr.bin/mail/Makefile Sat Jun 6 13:13:39 2015 (r284070) @@ -11,7 +11,7 @@ EFILES= mail.rc LINKS= ${BINDIR}/mail ${BINDIR}/Mail ${BINDIR}/mail ${BINDIR}/mailx MLINKS= mail.1 Mail.1 mail.1 mailx.1 -WARNS?= 1 +WARNS?= 2 .PATH: ${.CURDIR}/misc Modified: head/usr.bin/mail/main.c ============================================================================== --- head/usr.bin/mail/main.c Sat Jun 6 13:09:49 2015 (r284069) +++ head/usr.bin/mail/main.c Sat Jun 6 13:13:39 2015 (r284070) @@ -28,7 +28,7 @@ */ #ifndef lint -static char copyright[] = +static const char copyright[] = "@(#) Copyright (c) 1980, 1993\n\ The Regents of the University of California. All rights reserved.\n"; #endif /* not lint */