]> granicus.if.org Git - sudo/commitdiff
#include <compat.h> not "compat.h"
authorTodd C. Miller <Todd.Miller@courtesan.com>
Tue, 8 Feb 2005 03:55:42 +0000 (03:55 +0000)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Tue, 8 Feb 2005 03:55:42 +0000 (03:55 +0000)
error.c
fnmatch.c
getcwd.c
glob.c
snprintf.c

diff --git a/error.c b/error.c
index 3893e7c8bd9f83f1de724b4c25ce404840785918..9ab471ae5db32743cbe1dad799da296bbc53b1b3 100644 (file)
--- a/error.c
+++ b/error.c
@@ -20,7 +20,7 @@
 #include <string.h>
 
 #include <config.h>
-#include "compat.h"
+#include <compat.h>
 #include "error.h"
 
 #ifndef lint
index 3c2e02d7fbf3ef2d4c700251bac3291753bf6e51..148435808656a16ec21740810f655e478b5d246b 100644 (file)
--- a/fnmatch.c
+++ b/fnmatch.c
@@ -47,7 +47,7 @@
 # endif
 #endif /* HAVE_STRING_H */
 
-#include "compat.h"
+#include <compat.h>
 #include "emul/fnmatch.h"
 
 #undef EOS
index a32bc47b51e273def4358c4cabca32fb1ec8bd83..cd47cf44d91aa85df00c8662b7508a43c10787ea 100644 (file)
--- a/getcwd.c
+++ b/getcwd.c
@@ -72,7 +72,7 @@
 # endif
 #endif
 
-#include "compat.h"
+#include <compat.h>
 
 #define        ISDOT(dp) \
        (dp->d_name[0] == '.' && (dp->d_name[1] == '\0' || \
diff --git a/glob.c b/glob.c
index 45d01281a7e82379c677d074d57d43de790abc46..b8ca7d7ae9f5cf1fb4e1c0a3d718fe92ecc67be1 100644 (file)
--- a/glob.c
+++ b/glob.c
@@ -97,7 +97,7 @@
 #include <limits.h>
 #include <pwd.h>
 
-#include "compat.h"
+#include <compat.h>
 #include "emul/glob.h"
 
 #define        DOLLAR          '$'
index 85812d4b5db97bc7fe56312d7bb693ee276923aa..ad5e47e18db6b213a294acba27cc6a8f8dd4bc1a 100644 (file)
@@ -73,7 +73,7 @@
 # include <varargs.h>
 #endif
 
-#include "compat.h"
+#include <compat.h>
 
 #ifndef lint
 __unused static const char rcsid[] = "$Sudo$";