diff options
author | bapt <bapt@FreeBSD.org> | 2015-06-06 13:13:39 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2015-06-06 13:13:39 +0000 |
commit | 6720ff676c9b88cb7d95470d83fc364b0f83ab60 (patch) | |
tree | 5d79001999101dcaf5568ec31535370c3e2fb701 /usr.bin/mail | |
parent | c910801d6a65a351ae1907c8bcf3211251b3ce44 (diff) | |
download | FreeBSD-src-6720ff676c9b88cb7d95470d83fc364b0f83ab60.zip FreeBSD-src-6720ff676c9b88cb7d95470d83fc364b0f83ab60.tar.gz |
Add const to the copyright variable
Bump WARNS to level 2
Diffstat (limited to 'usr.bin/mail')
-rw-r--r-- | usr.bin/mail/Makefile | 2 | ||||
-rw-r--r-- | usr.bin/mail/main.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mail/Makefile b/usr.bin/mail/Makefile index da3e433..ea2338b 100644 --- a/usr.bin/mail/Makefile +++ b/usr.bin/mail/Makefile @@ -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 diff --git a/usr.bin/mail/main.c b/usr.bin/mail/main.c index 31372d0..0699a55 100644 --- a/usr.bin/mail/main.c +++ b/usr.bin/mail/main.c @@ -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 */ |