Use #include <config.h> not #include "config.h" for consistency.

Otherwise, some compilers may do the wrong thing in a build
dir if there is a config.h file in the source dir too.
This commit is contained in:
Todd C. Miller
2022-06-29 08:47:16 -06:00
parent 38278640ca
commit e5834bd405
20 changed files with 20 additions and 20 deletions

View File

@@ -19,7 +19,7 @@
#ifndef SUDO_TLS_COMMON_H
#define SUDO_TLS_COMMON_H
#include "config.h"
#include <config.h>
#if defined(HAVE_OPENSSL)
# if defined(HAVE_WOLFSSL)