From 1182ec4cc97b96e16ffdf621dd49763d25c48178 Mon Sep 17 00:00:00 2001 From: Sami Kerola Date: Tue, 7 Nov 2017 13:45:17 +0000 Subject: [PATCH] include: use project specific header guard Signed-off-by: Sami Kerola --- src/defaults.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/defaults.h b/src/defaults.h index c39149a..480f229 100644 --- a/src/defaults.h +++ b/src/defaults.h @@ -38,8 +38,8 @@ * the software. */ -#ifndef DEFAULTS_H -# define DEFAULTS_H 1 +#ifndef DHCPD_POOLS_DEFAULTS_H +# define DHCPD_POOLS_DEFAULTS_H 1 # include "dhcpd-pools.h" @@ -52,4 +52,4 @@ static const size_t MAXLEN = 1024; * \brief Maximum number of different shared networks in dhcpd.conf file. */ static const unsigned int SHARED_NETWORKS = 8192; -#endif /* DEFAULTS_H */ +#endif /* DHCPD_POOLS_DEFAULTS_H */