From 2d31877aecf0f1bd40631523a28c0c74eb8f8874 Mon Sep 17 00:00:00 2001 From: Romain Tartiere Date: Sun, 13 Mar 2011 20:33:00 +0000 Subject: [PATCH] Fix header protection. --- libnfc/iso7816.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libnfc/iso7816.h b/libnfc/iso7816.h index fb80377..4e058a3 100644 --- a/libnfc/iso7816.h +++ b/libnfc/iso7816.h @@ -17,8 +17,8 @@ * along with this program. If not, see */ -#ifndef __ISO7816_H__ -#define __ISO7816_H__ +#ifndef __LIBNFC_ISO7816_H__ +#define __LIBNFC_ISO7816_H__ #define ISO7816_C_APDU_COMMAND_HEADER_LEN 4 #define ISO7816_SHORT_APDU_MAX_DATA_LEN 256 @@ -28,4 +28,4 @@ #define ISO7816_SHORT_C_APDU_MAX_LEN (ISO7816_C_APDU_COMMAND_HEADER_LEN + ISO7816_SHORT_APDU_MAX_DATA_LEN + ISO7816_SHORT_C_APDU_MAX_OVERHEAD) #define ISO7816_SHORT_R_APDU_MAX_LEN (ISO7816_SHORT_APDU_MAX_DATA_LEN + ISO7816_SHORT_R_APDU_RESPONSE_TRAILER_LEN) -#endif +#endif /* !__LIBNFC_ISO7816_H__ */