From owner-freebsd-current@FreeBSD.ORG Mon Jun 17 08:53:09 2013 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) by hub.freebsd.org (Postfix) with ESMTP id 7286523A for ; Mon, 17 Jun 2013 08:53:09 +0000 (UTC) (envelope-from dt71@gmx.com) Received: from mout.gmx.net (mout.gmx.net [212.227.15.19]) by mx1.freebsd.org (Postfix) with ESMTP id 6A8C91468 for ; Mon, 17 Jun 2013 08:53:08 +0000 (UTC) Received: from [192.168.1.80] ([188.6.157.218]) by mail.gmx.com (mrgmx102) with ESMTPSA (Nemesis) id 0MGFz9-1UZyRY0bm3-00FG4E for ; Mon, 17 Jun 2013 10:53:07 +0200 Message-ID: <51BECE5E.7020406@gmx.com> Date: Mon, 17 Jun 2013 10:52:46 +0200 From: dt71@gmx.com User-Agent: Mozilla/5.0 (X11; FreeBSD i386; rv:20.0) Gecko/20100101 Firefox/20.0 SeaMonkey/2.17.1 MIME-Version: 1.0 To: freebsd-current@freebsd.org Subject: -Wheader-guard Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Provags-ID: V03:K0:7FGMQEwepRJhghkPdkrPRnuZyEO3z8ZGrsuY7WxsZMRbNc09agU yphAn0zorSnbEvF7ara3DyxuO79IVrubvihsxLhirxJUBZxYVhUCJcxkER8d+Sq20s3As34 kOZDRnxVquvKLpt4AEdBNf1vBBRh1P+ljS/ZigUBumei+qwQiBz8BhKFJs5olUyg3y4aCjV HoPRqd8yRmqkvx5+v9UYA== X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 17 Jun 2013 08:53:09 -0000 /usr/src/contrib/wpa/src/utils/base64.h:15:9: warning: 'BASE64_H' is used as a header guard here, followed by #define of a different macro [-Wheader-guard] #ifndef BASE64_H ^~~~~~~~ /usr/src/contrib/wpa/src/utils/base64.h:16:9: note: 'BASE64_h' is defined here; did you mean 'BASE64_H'? #define BASE64_h ^~~~~~~~ BASE64_H and so on. Patch: Index: contrib/wpa/src/utils/base64.h =================================================================== --- contrib/wpa/src/utils/base64.h (revision 251823) +++ contrib/wpa/src/utils/base64.h (working copy) @@ -13,7 +13,7 @@ */ #ifndef BASE64_H -#define BASE64_h +#define BASE64_H unsigned char * base64_encode(const unsigned char *src, size_t len, size_t *out_len); Index: sys/dev/puc/puc_bfe.h =================================================================== --- sys/dev/puc/puc_bfe.h (revision 251823) +++ sys/dev/puc/puc_bfe.h (working copy) @@ -27,7 +27,7 @@ */ #ifndef _DEV_PUC_BFE_H_ -#define _DEV_PUC_BFE_H +#define _DEV_PUC_BFE_H_ #define PUC_PCI_BARS 6 Index: sys/dev/puc/puc_cfg.h =================================================================== --- sys/dev/puc/puc_cfg.h (revision 251823) +++ sys/dev/puc/puc_cfg.h (working copy) @@ -27,7 +27,7 @@ */ #ifndef _DEV_PUC_CFG_H_ -#define _DEV_PUC_CFG_H +#define _DEV_PUC_CFG_H_ #define DEFAULT_RCLK 1843200 Index: sys/dev/vxge/vxge.h =================================================================== --- sys/dev/vxge/vxge.h (revision 251823) +++ sys/dev/vxge/vxge.h (working copy) @@ -31,7 +31,7 @@ /*$FreeBSD$*/ #ifndef _VXGE_H_ -#define __VXGE_H_ +#define _VXGE_H_ #include #include Index: usr.bin/csup/updater.h =================================================================== --- usr.bin/csup/updater.h (revision 251823) +++ usr.bin/csup/updater.h (working copy) @@ -26,7 +26,7 @@ * $FreeBSD$ */ #ifndef _UPDATER_H_ -#define _UPDATER_H +#define _UPDATER_H_ void *updater(void *); Index: usr.bin/sort/vsort.h =================================================================== --- usr.bin/sort/vsort.h (revision 251823) +++ usr.bin/sort/vsort.h (working copy) @@ -28,7 +28,7 @@ */ #if !defined(__VSORT_H__) -#define _VSORT_H__ +#define __VSORT_H__ #include "bwstring.h"