diff options
author | Vincent Douillet <vincent@vdouillet.fr> | 2023-08-09 11:00:49 +0200 |
---|---|---|
committer | Vincent Douillet <vincent@vdouillet.fr> | 2023-08-09 11:00:49 +0200 |
commit | 1970c9982e99daa26f7fc4c6f16b441a0aa806de (patch) | |
tree | 53fe09beea071d3f546e8f006619cbf29f8b19c2 /config.h | |
parent | 8b04ab2fc5d34693052fd16de20237498de67f58 (diff) |
simplify header import guards
Diffstat (limited to 'config.h')
-rw-r--r-- | config.h | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -28,8 +28,8 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#ifndef VAULT_CONFIG_H -#define VAULT_CONFIG_H +#ifndef CONFIG_H +#define CONFIG_H /* * The directory that will be browseable through vault. The vault process @@ -48,4 +48,4 @@ #define LOG_FILE "/var/log/vault.log" #endif -#endif /* VAULT_CONFIG_H */ +#endif /* CONFIG_H */ |