2
0
mirror of https://github.com/sudo-project/sudo.git synced 2025-08-22 09:57:41 +00:00

#include <compat.h> not "compat.h"

This commit is contained in:
Todd C. Miller 2005-02-08 03:55:42 +00:00
parent 2805405217
commit b950f28075
5 changed files with 5 additions and 5 deletions

View File

@ -20,7 +20,7 @@
#include <string.h> #include <string.h>
#include <config.h> #include <config.h>
#include "compat.h" #include <compat.h>
#include "error.h" #include "error.h"
#ifndef lint #ifndef lint

View File

@ -47,7 +47,7 @@
# endif # endif
#endif /* HAVE_STRING_H */ #endif /* HAVE_STRING_H */
#include "compat.h" #include <compat.h>
#include "emul/fnmatch.h" #include "emul/fnmatch.h"
#undef EOS #undef EOS

View File

@ -72,7 +72,7 @@
# endif # endif
#endif #endif
#include "compat.h" #include <compat.h>
#define ISDOT(dp) \ #define ISDOT(dp) \
(dp->d_name[0] == '.' && (dp->d_name[1] == '\0' || \ (dp->d_name[0] == '.' && (dp->d_name[1] == '\0' || \

2
glob.c
View File

@ -97,7 +97,7 @@
#include <limits.h> #include <limits.h>
#include <pwd.h> #include <pwd.h>
#include "compat.h" #include <compat.h>
#include "emul/glob.h" #include "emul/glob.h"
#define DOLLAR '$' #define DOLLAR '$'

View File

@ -73,7 +73,7 @@
# include <varargs.h> # include <varargs.h>
#endif #endif
#include "compat.h" #include <compat.h>
#ifndef lint #ifndef lint
__unused static const char rcsid[] = "$Sudo$"; __unused static const char rcsid[] = "$Sudo$";