]> granicus.if.org Git - sudo/commitdiff
Make local includes consistent; use double quotes for local includes
authorTodd C. Miller <Todd.Miller@courtesan.com>
Tue, 7 Sep 2010 20:45:19 +0000 (16:45 -0400)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Tue, 7 Sep 2010 20:45:19 +0000 (16:45 -0400)
except for generated ones where we use angle brackets.
Also g/c unused compat.h.

47 files changed:
common/alloc.c
common/atobool.c
common/fileops.c
common/fmt_string.c
common/lbuf.c
common/list.c
common/term.c
common/zero_bytes.c
compat/closefrom.c
compat/fnmatch.c
compat/getcwd.c
compat/getgrouplist.c
compat/getline.c
compat/getprogname.c
compat/glob.c
compat/isblank.c
compat/memrchr.c
compat/mksiglist.c
compat/mkstemps.c
compat/nanosleep.c
compat/setenv.c
compat/snprintf.c
compat/strlcat.c
compat/strlcpy.c
compat/strsignal.c
compat/unsetenv.c
compat/utimes.c
include/compat.h [deleted file]
plugins/sample/sample_plugin.c
plugins/sample_group/getgrent.c
plugins/sample_group/plugin_test.c
plugins/sample_group/sample_group.c
plugins/sudoers/audit.c
plugins/sudoers/auth/afs.c
plugins/sudoers/boottime.c
plugins/sudoers/getdate.c
plugins/sudoers/getdate.y
plugins/sudoers/linux_audit.c
plugins/sudoers/match.c
plugins/sudoers/plugin_error.c
plugins/sudoers/sudoreplay.c
plugins/sudoers/timestr.c
src/error.c
src/sesh.c
src/sudo.h
src/sudo_noexec.c
src/ttysize.c

index ef11c1794d8ad7bb001c6486dd2f3274e5eb00b5..01b241cffac66d71b41ef0d39701edd29e3443cb 100644 (file)
@@ -45,9 +45,9 @@
 # include <inttypes.h>
 #endif
 
-#include <missing.h>
-#include <alloc.h>
-#include <error.h>
+#include "missing.h"
+#include "alloc.h"
+#include "error.h"
 
 /*
  * If there is no SIZE_MAX or SIZE_T_MAX we have to assume that size_t
index b056489afe39e85c4728de5f5026b21a397998de..f22aae8a0f2d44e3c7986473467ab83a43c4a1a5 100644 (file)
@@ -38,7 +38,7 @@
 # include <strings.h>
 #endif /* HAVE_STRINGS_H */
 
-#include <missing.h>
+#include "missing.h"
 
 int
 atobool(const char *str)
index fe319ebea0d6cc41d3bf6aead78ce157a9828697..0779a1f800816646fb1f7003855db81f4d16cfa3 100644 (file)
 # include <time.h>
 #endif
 #ifndef HAVE_TIMESPEC
-# include <emul/timespec.h>
+# include "compat/timespec.h"
 #endif
 
-#include <missing.h>
-#include <fileops.h>
+#include "missing.h"
+#include "fileops.h"
 
 #ifndef LINE_MAX
 # define LINE_MAX 2048
index 5ece309f12fc38e0a42f915577288f971efb0a27..f2b301dc73af509f4f62bcc9fb9e03562e3d638d 100644 (file)
@@ -38,7 +38,7 @@
 # include <strings.h>
 #endif /* HAVE_STRINGS_H */
 
-#include <missing.h>
+#include "missing.h"
 
 /*
  * Allocate storage for a name=value string and return it.
index 96bc978fb2e8badca6544a2aff40dc155a06f082..690bb227f2d3718896785d1a8b2496b669346cfa 100644 (file)
 #include <ctype.h>
 #include <termios.h>
 
-#include <missing.h>
-#include <alloc.h>
-#include <error.h>
-#include <lbuf.h>
+#include "missing.h"
+#include "alloc.h"
+#include "error.h"
+#include "lbuf.h"
 
 void
 lbuf_init(struct lbuf *lbuf, int (*output)(const char *),
index 88f8bdd91074650cc0c2309b119b86c4ea8d17d9..d4d060eaa76c2c97e297195a621f1eec6b8a5136 100644 (file)
 # endif
 #endif /* STDC_HEADERS */
 
-#include <missing.h>
-#include <list.h>
+#include "missing.h"
+#include "list.h"
 #ifdef DEBUG
-# include <error.h>
+# include "error.h"
 #endif
 
 struct list_proto {
index 26069d2c1c88174de9e412d653d1abea19456d45..02b1c45d2c8f70278559a2178f3d44da4af3fe01 100644 (file)
@@ -38,7 +38,7 @@
 #endif /* HAVE_STRINGS_H */
 #include <termios.h>
 
-#include <missing.h>
+#include "missing.h"
 
 #ifndef TCSASOFT
 # define TCSASOFT      0
index 21041673fbecfde74033dd79ee894d6b434f2e93..f6f22bc4d211eeb26f7171b9653e8bc9b47cee3c 100644 (file)
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+#include <config.h>
+
 #include <sys/types.h>
 
-#include <config.h>
-#include <missing.h>
+#include "missing.h"
 
 /*
  * Like bzero(3) but with a volatile pointer.  The hope is that
index a91e4578bda6e60d393d39ddabfb7933bb8cd1db..71777e7b272a113ab48d5b44c717b8991df87813 100644 (file)
@@ -47,7 +47,7 @@
 # endif
 #endif
 
-#include <missing.h>
+#include "missing.h"
 
 #ifndef HAVE_FCNTL_CLOSEM
 # ifndef HAVE_DIRFD
index 421b16fec32b98e9a17ef5032f3bf4fa85b2aeb6..5fdb0a434bdf8841ee75f81f5751f249c8aad3c9 100644 (file)
@@ -49,9 +49,9 @@
 # include <strings.h>
 #endif /* HAVE_STRINGS_H */
 
-#include <missing.h>
-#include "fnmatch.h"
 #include "charclass.h"
+#include "fnmatch.h"
+#include "missing.h"
 
 #undef EOS
 #define        EOS     '\0'
index d70c6af2b845d9921785267897698dc359797253..dd443bde2c399cbe01772258c63926a4162a6756 100644 (file)
@@ -71,7 +71,7 @@
 # endif
 #endif
 
-#include <missing.h>
+#include "missing.h"
 
 #define        ISDOT(dp) \
        (dp->d_name[0] == '.' && (dp->d_name[1] == '\0' || \
index 165878913be49588df1f38896a9e6117cd41dbee..69064894d1115bc8f1504d4885e83d02c61b736b 100644 (file)
@@ -34,7 +34,7 @@
 #endif /* HAVE_STRINGS_H */
 #include <grp.h>
 
-#include <missing.h>
+#include "missing.h"
 
 /*
  * BSD-compatible getgrouplist(3) using getgrent(3)
index 93f4952e71e29c209f4e775fdb5dff6f7c5d7c98..606fd0e76a98fe1a00eea492ce0eccef4d6a8aca 100644 (file)
@@ -35,7 +35,7 @@
 #endif /* HAVE_STRINGS_H */
 #include <limits.h>
 
-#include <missing.h>
+#include "missing.h"
 
 #ifndef LINE_MAX
 # define LINE_MAX 2048
index 88c7433a7019d1534d6251960ddc32f7c18d6451..34673f5f69962264ff4e5303c9bb6c00ec01b701 100644 (file)
@@ -21,7 +21,7 @@
 #include <stdio.h>
 #include <string.h>
 
-#include <missing.h>
+#include "missing.h"
 
 static const char *progname = "sudo";
 
index b09cfe5f56c08ece78206888f6c1339f51d89719..5f53f5e1839ce9cb2b2824007767237b3f57100e 100644 (file)
@@ -95,7 +95,7 @@
 #include <limits.h>
 #include <pwd.h>
 
-#include <missing.h>
+#include "missing.h"
 #include "glob.h"
 #include "charclass.h"
 
index cd41950a4100b930808295a33dfc7354cae1d6d2..dc138874ae9ebdefa5692c1bde894e33359de45e 100644 (file)
@@ -18,7 +18,7 @@
 
 #include <sys/types.h>
 
-#include <missing.h>
+#include "missing.h"
 
 #undef isblank
 int
index 9b5cc9c8e53b86c67b3faddb60d40ad743681aaf..fa7479a752a6002260a5e0dbe2a2c8bd8c233f24 100644 (file)
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#include <sys/types.h>
 #include <config.h>
-#include <missing.h>
+
+#include <sys/types.h>
+
+#include "missing.h"
 
 /*
  * Reverse memchr()
index 21c0c71a332a8d17555ff8e4eb13af4e40dea701..d77ce4523366e7fa30ff2a1a9e55c0c319159d19 100644 (file)
@@ -30,7 +30,7 @@
 #endif /* STDC_HEADERS */
 #include <signal.h>
 
-#include <missing.h>
+#include "missing.h"
 
 int
 main(int argc, char *argv[])
index 3026ce0b6839d368b15d44f4bf6b3711e13593dc..04898937ea2639b4d5892c821f8e5228633fe8b1 100644 (file)
@@ -36,7 +36,7 @@
 # include <time.h>
 #endif
 
-#include <missing.h>
+#include "missing.h"
 
 static unsigned int get_random(void);
 static void seed_random(void);
index 63620cd27bae5dba2ede5d97210285c4223c5819..d390defc889947a16afcd28ac113d9ddc28f3aea 100644 (file)
@@ -29,7 +29,7 @@
 #endif
 #include <errno.h>
 
-#include <missing.h>
+#include "missing.h"
 
 int
 nanosleep(const struct timespec *ts, struct timespec *rts)
index ae9576c76b7299f1b2d6dafa7924d8780bbcdce3..cff0c26155bb728e37d1e0a71db3e94cf3d566e4 100644 (file)
@@ -38,7 +38,7 @@
 #endif /* HAVE_MALLOC_H && !STDC_HEADERS */
 #include <errno.h>
 
-#include <missing.h>
+#include "missing.h"
 
 int
 setenv(const char *var, const char *val, int overwrite)
index 7de9145bd2b06332f096217a18775fe99ba1884f..184db1014cd71ef809a00a72a2bf94289d9fa13f 100644 (file)
@@ -71,7 +71,7 @@
 #include <limits.h>
 #include <stdarg.h>
 
-#include <missing.h>
+#include "missing.h"
 
 static int xxxprintf(char **, size_t, int, const char *, va_list);
 
index a24ef49e68bcc7a2478c69f3046ef2532a4a28ff..91313e6f95e1eb98ce169bc24f6e8f0f30000566 100644 (file)
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+#include <config.h>
+
 #include <sys/types.h>
 #include <string.h>
 
-#include <config.h>
-#include <missing.h>
+#include "missing.h"
 
 /*
  * Appends src to string dst of size siz (unlike strncat, siz is the
index 9432e9304ad2f8c5638ffc6f51c75139033cd880..df29dd2de0c545dd08b316d533fe3cd9c972b5b3 100644 (file)
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
+#include <config.h>
+
 #include <sys/types.h>
 
-#include <config.h>
-#include <missing.h>
+#include "missing.h"
 
 /*
  * Copy src to string dst of size siz.  At most siz-1 characters
index ec5030edc7174cc97b3f00376bd49ac5c9ad4b59..f68fb9dfe77356e3ac7b5db33793db8823fc6ebe 100644 (file)
@@ -21,7 +21,7 @@
 #include <stdio.h>
 #include <signal.h>
 
-#include <missing.h>
+#include "missing.h"
 
 #if defined(HAVE_DECL_SYS_SIGLIST) && HAVE_DECL_SYS_SIGLIST == 1
 # define my_sys_siglist        sys_siglist
index 6304d38fdadbd24d075ecac456d40f8d0bf7c1e0..f7cfaa76bc27fd3ca18d4070653600e3442d0f18 100644 (file)
@@ -35,7 +35,7 @@
 #endif /* HAVE_STRINGS_H */
 #include <errno.h>
 
-#include <missing.h>
+#include "missing.h"
 
 extern char **environ; /* global environment */
 
index f4aa2d4e57dc06f88212a025e88da12389bcf557..626f725e9a888d6ab086b51febf8b581f6da8a2d 100644 (file)
@@ -30,7 +30,7 @@
 # include "utime.h"
 #endif
 
-#include <missing.h>
+#include "missing.h"
 
 #ifndef HAVE_UTIMES
 /*
diff --git a/include/compat.h b/include/compat.h
deleted file mode 100644 (file)
index 2ca605c..0000000
+++ /dev/null
@@ -1,324 +0,0 @@
-/*
- * Copyright (c) 1996, 1998-2005, 2008, 2009-2010
- *     Todd C. Miller <Todd.Miller@courtesan.com>
- *
- * Permission to use, copy, modify, and distribute this software for any
- * purpose with or without fee is hereby granted, provided that the above
- * copyright notice and this permission notice appear in all copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
- * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
- * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
- * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
- * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
- * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
- * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
- *
- * Sponsored in part by the Defense Advanced Research Projects
- * Agency (DARPA) and Air Force Research Laboratory, Air Force
- * Materiel Command, USAF, under agreement number F39502-99-1-0512.
- */
-
-#ifndef _SUDO_MISSING_H
-#define _SUDO_MISSING_H
-
-/*
- * Macros and functions that may be missing on some operating systems.
- */
-
-/* Define away __attribute__ for non-gcc or old gcc */
-#if !defined(__GNUC__) || __GNUC__ < 2 || __GNUC__ == 2 && __GNUC_MINOR__ < 5
-# define __attribute__(x)
-#endif
-
-/* For silencing gcc warnings about rcsids */
-#ifndef __unused
-# if defined(__GNUC__) && (__GNUC__ > 2 || __GNUC__ == 2 && __GNUC_MINOR__ > 7)
-#  define __unused     __attribute__((__unused__))
-# else
-#  define __unused
-# endif
-#endif
-
-/* For catching format string mismatches */
-#ifndef __printflike
-# if defined(__GNUC__) && (__GNUC__ > 2 || __GNUC__ == 2 && __GNUC_MINOR__ >= 7)
-#  define __printflike(f, v)   __attribute__((__format__ (__printf__, f, v)))
-# else
-#  define __printflike(f, v)
-# endif
-#endif
-
-/*
- * Some systems lack full limit definitions.
- */
-#ifndef OPEN_MAX
-# define OPEN_MAX      256
-#endif
-
-#ifndef INT_MAX
-# define INT_MAX       0x7fffffff
-#endif
-
-#ifndef PATH_MAX
-# ifdef MAXPATHLEN
-#  define PATH_MAX             MAXPATHLEN
-# else
-#  ifdef _POSIX_PATH_MAX
-#   define PATH_MAX            _POSIX_PATH_MAX
-#  else
-#   define PATH_MAX            1024
-#  endif
-# endif
-#endif
-
-#ifndef MAXHOSTNAMELEN
-# define MAXHOSTNAMELEN                64
-#endif
-
-/*
- * Posix versions for those without...
- */
-#ifndef _S_IFMT
-# define _S_IFMT               S_IFMT
-#endif /* _S_IFMT */
-#ifndef _S_IFREG
-# define _S_IFREG              S_IFREG
-#endif /* _S_IFREG */
-#ifndef _S_IFDIR
-# define _S_IFDIR              S_IFDIR
-#endif /* _S_IFDIR */
-#ifndef _S_IFLNK
-# define _S_IFLNK              S_IFLNK
-#endif /* _S_IFLNK */
-#ifndef S_ISREG
-# define S_ISREG(m)            (((m) & _S_IFMT) == _S_IFREG)
-#endif /* S_ISREG */
-#ifndef S_ISDIR
-# define S_ISDIR(m)            (((m) & _S_IFMT) == _S_IFDIR)
-#endif /* S_ISDIR */
-
-/*
- * Some OS's may not have this.
- */
-#ifndef S_IRWXU
-# define S_IRWXU               0000700         /* rwx for owner */
-#endif /* S_IRWXU */
-
-/*
- * These should be defined in <unistd.h> but not everyone has them.
- */
-#ifndef STDIN_FILENO
-# define       STDIN_FILENO    0
-#endif
-#ifndef STDOUT_FILENO
-# define       STDOUT_FILENO   1
-#endif
-#ifndef STDERR_FILENO
-# define       STDERR_FILENO   2
-#endif
-
-/*
- * BSD defines these in <sys/param.h> but others may not.
- */
-#ifndef MIN
-# define MIN(a,b) (((a)<(b))?(a):(b))
-#endif
-#ifndef MAX
-# define MAX(a,b) (((a)>(b))?(a):(b))
-#endif
-
-/*
- * Simple isblank() macro and function for systems without it.
- */
-#ifndef HAVE_ISBLANK
-int isblank(int);
-# define isblank(_x)   ((_x) == ' ' || (_x) == '\t')
-#endif
-
-/*
- * NCR's SVr4 has _innetgr(3) instead of innetgr(3) for some reason.
- */
-#ifdef HAVE__INNETGR
-# define innetgr(n, h, u, d)   (_innetgr(n, h, u, d))
-# define HAVE_INNETGR 1
-#endif /* HAVE__INNETGR */
-
-/*
- * On POSIX systems, O_NOCTTY is the default so some OS's may lack this define.
- */
-#ifndef O_NOCTTY
-# define O_NOCTTY      0
-#endif /* O_NOCTTY */
-
-/*
- * Add IRIX-like sigaction_t for those without it.
- * SA_RESTART is not required by POSIX; SunOS has SA_INTERRUPT instead.
- */
-#ifndef HAVE_SIGACTION_T
-typedef struct sigaction sigaction_t;
-#endif
-#ifndef SA_INTERRUPT
-# define SA_INTERRUPT  0
-#endif
-#ifndef SA_RESTART
-# define SA_RESTART    0
-#endif
-
-/*
- * If dirfd() does not exists, hopefully dd_fd does.
- */
-#if !defined(HAVE_DIRFD) && defined(HAVE_DD_FD)
-# define dirfd(_d)     ((_d)->dd_fd)
-# define HAVE_DIRFD
-#endif
-
-/*
- * Define futimes() in terms of futimesat() if needed.
- */
-#if !defined(HAVE_FUTIMES) && defined(HAVE_FUTIMESAT)
-# define futimes(_f, _tv)      futimesat(_f, NULL, _tv)
-# define HAVE_FUTIMES
-#endif
-
-#if !defined(HAVE_KILLPG) && !defined(killpg)
-# define killpg(s)     kill(-(s))
-#endif
-
-/*
- * If we lack getprogname(), emulate with __progname if possible.
- * Otherwise, add a prototype for use with our own getprogname.c.
- */
-#ifndef HAVE_GETPROGNAME
-# ifdef HAVE___PROGNAME
-extern const char *__progname;
-#  define getprogname()          (__progname)
-# else
-const char *getprogname(void);
-void setprogname(const char *);
-#endif /* HAVE___PROGNAME */
-#endif /* !HAVE_GETPROGNAME */
-
-#ifndef timevalclear
-# define timevalclear(tv)      ((tv)->tv_sec = (tv)->tv_usec = 0)
-#endif
-#ifndef timevalisset
-# define timevalisset(tv)      ((tv)->tv_sec || (tv)->tv_usec)
-#endif
-#ifndef timevalcmp
-# define timevalcmp(tv1, tv2, op)                                             \
-    (((tv1)->tv_sec == (tv2)->tv_sec) ?                                               \
-       ((tv1)->tv_usec op (tv2)->tv_usec) :                                   \
-       ((tv1)->tv_sec op (tv2)->tv_sec))
-#endif
-#ifndef timevaladd
-# define timevaladd(tv1, tv2)                                                 \
-    do {                                                                      \
-       (tv1)->tv_sec += (tv2)->tv_sec;                                        \
-       (tv1)->tv_usec += (tv2)->tv_usec;                                      \
-       if ((tv1)->tv_usec >= 1000000) {                                       \
-           (tv1)->tv_sec++;                                                   \
-           (tv1)->tv_usec -= 1000000;                                         \
-       }                                                                      \
-    } while (0)
-#endif
-#ifndef timevalsub
-# define timevalsub(tv1, tv2)                                                 \
-    do {                                                                      \
-       (tv1)->tv_sec -= (tv2)->tv_sec;                                        \
-       (tv1)->tv_usec -= (tv2)->tv_usec;                                      \
-       if ((tv1)->tv_usec < 0) {                                              \
-           (tv1)->tv_sec--;                                                   \
-           (tv1)->tv_usec += 1000000;                                         \
-       }                                                                      \
-    } while (0)
-#endif
-
-/* Not all systems define NSIG in signal.h */
-#if !defined(NSIG)
-# if defined(_NSIG)
-#  define NSIG _NSIG
-# elif defined(__NSIG)
-#  define NSIG __NSIG
-# else
-#  define NSIG 64
-# endif
-#endif
-
-#ifndef WCOREDUMP
-# define WCOREDUMP(x)  ((x) & 0x80)
-#endif
-
-#ifndef HAVE_SETEUID
-#  if defined(HAVE_SETRESUID)
-#    define seteuid(u) setresuid(-1, (u), -1)
-#    define setegid(g) setresgid(-1, (g), -1)
-#    define HAVE_SETEUID 1
-#  elif defined(HAVE_SETREUID)
-#    define seteuid(u) setreuid(-1, (u))
-#    define setegid(g) setregid(-1, (g))
-#    define HAVE_SETEUID 1
-#  endif
-#endif /* HAVE_SETEUID */
-
-#include <stdio.h>
-#include <stdarg.h>
-
-/* Functions "missing" from libc. */
-
-struct timeval;
-struct timespec;
-
-#ifndef HAVE_CLOSEFROM
-void closefrom(int);
-#endif
-#ifndef HAVE_GETCWD
-char *getcwd(char *, size_t size);
-#endif
-#ifndef HAVE_GETLINE
-ssize_t getline(char **, size_t *, FILE *);
-#endif
-#ifndef HAVE_UTIMES
-int utimes(const char *, const struct timeval *);
-#endif
-#ifdef HAVE_FUTIME
-int futimes(int, const struct timeval *);
-#endif
-#ifndef HAVE_SNPRINTF
-int snprintf(char *, size_t, const char *, ...) __printflike(3, 4);
-#endif
-#ifndef HAVE_VSNPRINTF
-int vsnprintf(char *, size_t, const char *, va_list) __printflike(3, 0);
-#endif
-#ifndef HAVE_ASPRINTF
-int asprintf(char **, const char *, ...) __printflike(2, 3);
-#endif
-#ifndef HAVE_VASPRINTF
-int vasprintf(char **, const char *, va_list) __printflike(2, 0);
-#endif
-#ifndef HAVE_STRLCAT
-size_t strlcat(char *, const char *, size_t);
-#endif
-#ifndef HAVE_STRLCPY
-size_t strlcpy(char *, const char *, size_t);
-#endif
-#ifndef HAVE_MEMRCHR
-void *memrchr(const void *, int, size_t);
-#endif
-#ifndef HAVE_MKSTEMPS
-int mkstemps(char *, int);
-#endif
-#ifndef HAVE_NANOSLEEP
-int nanosleep(const struct timespec *, struct timespec *);
-#endif
-#ifndef HAVE_SETENV
-int setenv(const char *, const char *, int);
-#endif
-#ifndef HAVE_UNSETENV
-int unsetenv(const char *);
-#endif
-#ifndef HAVE_STRSIGNAL
-char *strsignal(int);
-#endif
-
-#endif /* _SUDO_MISSING_H */
index a8a08c0372d297467333be498a2045607d72f7cb..a7f13a50fccb6b88e8e9307a6e2a650bcff3ba57 100644 (file)
@@ -49,9 +49,9 @@
 #include <pwd.h>
 #include <stdarg.h>
 
-#include <sudo_plugin.h>
-#include <missing.h>
 #include <pathnames.h>
+#include "sudo_plugin.h"
+#include "missing.h"
 
 /*
  * Sample plugin module that allows any user who knows the password
index 4c4225bb8644c5115fb31dfa24026331c9e54805..714bd6fa3007c09242e7b70f699f5c07ab1c1cad 100644 (file)
@@ -45,7 +45,7 @@
 #include <pwd.h>
 #include <grp.h>
 
-#include <missing.h>
+#include "missing.h"
 
 #ifndef LINE_MAX
 # define LINE_MAX 2048
index 5ffb697c0f2c335df035ac9a8622b618aa82ac0d..69396f6bb6f56780441a7398ad6f641c5ad36700 100644 (file)
@@ -29,7 +29,7 @@
 #include <limits.h>
 #include <pwd.h>
 
-#include <sudo_plugin.h>
+#include "sudo_plugin.h"
 
 /*
  * Simple driver to test sudoer group plugins.
index d4417955955e8e635e8358961c57ef988706ec63..dbd1c27094ecf61cb7fe9980c383c146b92200cb 100644 (file)
@@ -48,8 +48,8 @@
 #include <grp.h>
 #include <pwd.h>
 
-#include <sudo_plugin.h>
-#include <missing.h>
+#include "sudo_plugin.h"
+#include "missing.h"
 
 /*
  * Sample sudoers group plugin that uses an extra group file with the
index edb1dae0ae5a3fdcef0910f626719b73ee774033..2cb113083e28eb8accf142ae90b4e31276bbe1b0 100644 (file)
@@ -28,7 +28,7 @@
 #endif /* STDC_HEADERS */
 #include <stdarg.h>
 
-#include <missing.h>
+#include "missing.h"
 #include "logging.h"
 
 #ifdef HAVE_BSM_AUDIT
index ef54511485163f192b063dbe5728229cc0076976..57d99f3e8d12370a6a5ecf2a0b1819f2273c2d77 100644 (file)
 #endif /* HAVE_UNISTD_H */
 #include <pwd.h>
 
-#include "sudoers.h"
-#include "sudo_auth.h"
-
 #include <afs/stds.h>
 #include <afs/kautils.h>
 
+#include "sudoers.h"
+#include "sudo_auth.h"
+
 int
 afs_verify(struct passwd *pw, char *pass, sudo_auth *auth)
 {
index c4787b2b9d7cc16c8241952aa6390e62c4f6978f..19634a664e61c4d15c57b52a61403b3b39219d33 100644 (file)
@@ -47,7 +47,7 @@
 # include <sys/sysctl.h>
 #endif
 
-#include <missing.h>
+#include "missing.h"
 
 /*
  * Fill in a struct timeval with the time the system booted.
index c9dee68b0dbfa156f63239c6f57fc703070a0622..07091af362a5ebb989f569bb98d828c3d27f8300 100644 (file)
@@ -50,7 +50,7 @@
 #endif
 #include <ctype.h>
 
-#include <missing.h>
+#include "missing.h"
 
 
 #define EPOCH          1970
index 23ab34c0b12ee8d7ce5447d52677f9350c8e4eac..13483ff31ff1459ad1a876991b27f3c22ea6a3e4 100644 (file)
@@ -39,7 +39,7 @@
 #endif
 #include <ctype.h>
 
-#include <missing.h>
+#include "missing.h"
 
 
 #define EPOCH          1970
index a623307e6c5a92b77b53bc79f6990859543fc5d4..b7a94bb22df3ae7494d3e974f6e1183917de3066 100644 (file)
 #include <string.h>
 #include <libaudit.h>
 
-#include <missing.h>
-#include <error.h>
-#include <alloc.h>
-#include <linux_audit.h>
+#include "missing.h"
+#include "error.h"
+#include "alloc.h"
+#include "linux_audit.h"
 
 /*
  * Open audit connection if possible.
index 2076f1ee5b53eff081fcb07707de602cee90388e..acdabd825d44421941c1d5552f44961ca0a4a01a 100644 (file)
 #include <gram.h>
 
 #ifndef HAVE_FNMATCH
-# include <compat/fnmatch.h>
+# include "compat/fnmatch.h"
 #endif /* HAVE_FNMATCH */
 #ifndef HAVE_EXTENDED_GLOB
-# include <compat/glob.h>
+# include "compat/glob.h"
 #endif /* HAVE_EXTENDED_GLOB */
 
 static struct member_list empty;
index 4eec45256bcb619c7f897d90a13ea44bd862142a..2513d018b39f80a60a73a8df4bb86b17a62d0ade 100644 (file)
 #include <string.h>
 #include <setjmp.h>
 
-#include <missing.h>
-#include <alloc.h>
-#include <error.h>
-#include <sudo_plugin.h>
+#include "missing.h"
+#include "alloc.h"
+#include "error.h"
+#include "sudo_plugin.h"
 
 static void _warning(int, const char *, va_list);
        void cleanup(int);
index 33df8c252ab3d75f49cffc907744f03e1f53c5c3..3f1266966834a89a929b036eaccbb28bee3dd29b 100644 (file)
@@ -85,9 +85,9 @@
 
 #include <pathnames.h>
 
-#include <missing.h>
-#include <alloc.h>
-#include <error.h>
+#include "alloc.h"
+#include "error.h"
+#include "missing.h"
 
 #ifndef LINE_MAX
 # define LINE_MAX 2048
index bdcf009357d42c89a83f457cd19a8a2286f66e91..97309c0929922ac9781503127996f4e6a932b797 100644 (file)
@@ -28,7 +28,7 @@
 #endif /* STDC_HEADERS */
 #include <time.h>
 
-#include <missing.h>
+#include "missing.h"
 
 char *get_timestr(time_t, int);
 
index 222804768640a1d693979c6f6dfedccd48ba9332..8e2678998a2eaa927191078a478a22bd769a620c 100644 (file)
@@ -23,7 +23,7 @@
 #include <stdlib.h>
 #include <string.h>
 
-#include <missing.h>
+#include "missing.h"
 #include "error.h"
 
 static void _warning(int, const char *, va_list);
index e85d80bd05ee75f42048492526645938722ed0c5..e0aef78f8e1d8a11e79fb3f7f4ed3e0bdaca49f4 100644 (file)
@@ -27,7 +27,7 @@
 #include <string.h>
 #include <unistd.h>
 
-#include <missing.h>
+#include "missing.h"
 
 int
 main (int argc, char *argv[])
index d83174c9dd72b73fb5807b22f541d134cd2bfdd0..36c994c8b1c7da3299dcb53e4c101df848d7a050 100644 (file)
 #ifndef _SUDO_SUDO_H
 #define _SUDO_SUDO_H
 
-#include <pathnames.h>
 #include <limits.h>
 
-#include <missing.h>
-#include <alloc.h>
-#include <error.h>
-#include <fileops.h>
-#include <list.h>
+#include <pathnames.h>
+#include "missing.h"
+#include "alloc.h"
+#include "error.h"
+#include "fileops.h"
+#include "list.h"
 
 #ifdef __TANDEM
 # define ROOT_UID       65535
index 9ff35dba669303fad260a9a28d6c7eb5e1670df8..d0c6047c77ea6493a5a0711208ba2589f766d709 100644 (file)
@@ -24,7 +24,7 @@
 #endif
 #include <stdarg.h>
 
-#include <missing.h>
+#include "missing.h"
 
 /*
  * Dummy versions of the execve() family of syscalls.  We don't need
index 3553dbbc7a90a2356f6849064136c9898bf59220..b84efb0ca3678280ce54e650cb425d9440f1b479 100644 (file)
@@ -34,7 +34,7 @@
 #endif /* HAVE_UNISTD_H */
 #include <termios.h>
 
-#include <missing.h>
+#include "missing.h"
 
 #if !defined(TIOCGSIZE) && defined(TIOCGWINSZ)
 # define TIOCGSIZE     TIOCGWINSZ