From fe17647fb8533e915b78ac2c9235980396b3f57d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dag-Erling=20Sm=C3=B8rgrav?= Date: Fri, 20 Apr 2012 11:06:38 +0000 Subject: [PATCH] Name include guards consistently. git-svn-id: svn+ssh://svn.openpam.org/svn/openpam/trunk@606 185d5e19-27fe-0310-9dcf-9bff6b9f3609 --- lib/openpam_constants.h | 4 ++-- lib/openpam_debug.h | 4 ++-- lib/openpam_features.h | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/openpam_constants.h b/lib/openpam_constants.h index a6cb271..74a85ae 100644 --- a/lib/openpam_constants.h +++ b/lib/openpam_constants.h @@ -30,8 +30,8 @@ * $Id$ */ -#ifndef OPENPAM_CONSTANTS_INCLUDED -#define OPENPAM_CONSTANTS_INCLUDED +#ifndef OPENPAM_CONSTANTS_H_INCLUDED +#define OPENPAM_CONSTANTS_H_INCLUDED extern const char *pam_err_name[PAM_NUM_ERRORS]; extern const char *pam_item_name[PAM_NUM_ITEMS]; diff --git a/lib/openpam_debug.h b/lib/openpam_debug.h index 0e59ee8..4116289 100644 --- a/lib/openpam_debug.h +++ b/lib/openpam_debug.h @@ -35,8 +35,8 @@ * $Id$ */ -#ifndef OPENPAM_DEBUG_INCLUDED -#define OPENPAM_DEBUG_INCLUDED +#ifndef OPENPAM_DEBUG_H_INCLUDED +#define OPENPAM_DEBUG_H_INCLUDED #ifdef OPENPAM_DEBUG #define ENTER() openpam_log(PAM_LOG_LIBDEBUG, "entering") diff --git a/lib/openpam_features.h b/lib/openpam_features.h index a17a35c..227b1a9 100644 --- a/lib/openpam_features.h +++ b/lib/openpam_features.h @@ -30,8 +30,8 @@ * $Id$ */ -#ifndef OPENPAM_FEATURES_INCLUDED -#define OPENPAM_FEATURES_INCLUDED +#ifndef OPENPAM_FEATURES_H_INCLUDED +#define OPENPAM_FEATURES_H_INCLUDED struct openpam_feature { const char *name;