]> granicus.if.org Git - sudo/commitdiff
options.h is now <> instead of "" so shadow build trees can
authorTodd C. Miller <Todd.Miller@courtesan.com>
Mon, 13 Nov 1995 05:16:38 +0000 (05:16 +0000)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Mon, 13 Nov 1995 05:16:38 +0000 (05:16 +0000)
have a custom copy of options.h

14 files changed:
find_path.c
getwd.c
goodpath.c
interfaces.c
logging.c
parse.c
parse.lex
parse.yacc
sudo.c
sudo.h
sudo_setenv.c
tgetpass.c
utime.c
visudo.c

index 35b102e683b9d652b34e00957759474449979c05..e549d71ef628ca0023c835a7e9d97c67bcd20236 100644 (file)
@@ -56,7 +56,7 @@ static char rcsid[] = "$Id$";
 #include <sys/stat.h>
 #include <netinet/in.h>
 #include "sudo.h"
-#include "options.h"
+#include <options.h>
 
 #ifndef STDC_HEADERS
 #ifndef __GNUC__               /* gcc has its own malloc */
diff --git a/getwd.c b/getwd.c
index 8a4cc5ce0d600e8e1bb3ecb2cd321b829615e65f..61b27154d78b644dc1f69a7125c020293cad2d5b 100644 (file)
--- a/getwd.c
+++ b/getwd.c
@@ -51,7 +51,7 @@ static char rcsid[] = "$Id$";
 #include <sys/param.h>
 #include <netinet/in.h>
 
-#include "pathnames.h"
+#include <pathnames.h>
 #include "compat.h"
 
 #ifndef STDC_HEADERS
index ffcccc52d019b113795f379e645d4a39b152e9d6..17ffcc3bfe3cc6e07088aac11cf91e2773f6b047 100644 (file)
@@ -51,7 +51,7 @@ static char rcsid[] = "$Id$";
 #include <netinet/in.h>
 
 #include "sudo.h"
-#include "options.h"
+#include <options.h>
 
 #ifndef STDC_HEADERS
 extern int stat                __P((const char *, struct stat *));
index bd07b7dab525038ea8b2605561db36226692477a..22693e226ad866cd78c99df0ca31dddee59a0c54 100644 (file)
@@ -77,7 +77,7 @@ static char rcsid[] = "$Id$";
 #include <net/if.h>
 
 #include "sudo.h"
-#include "options.h"
+#include <options.h>
 #include "version.h"
 
 #if !defined(STDC_HEADERS) && !defined(__GNUC__)
index 049972e95725ac3852c5e08f372a75c359d5a5e5..7506071b763f1578557b47c1c728125b4c8e2fed 100644 (file)
--- a/logging.c
+++ b/logging.c
@@ -68,7 +68,7 @@ static char rcsid[] = "$Id$";
 #include <netinet/in.h>
 
 #include "sudo.h"
-#include "options.h"
+#include <options.h>
 
 /*
  * Prototypes for local functions
diff --git a/parse.c b/parse.c
index d21a029770e72b113848993d00351644a6c04a03..0a62ad31503a3c1259c820d716d7b0d31d6f6dfd 100644 (file)
--- a/parse.c
+++ b/parse.c
@@ -71,7 +71,7 @@ static char rcsid[] = "$Id$";
 #endif
 
 #include "sudo.h"
-#include "options.h"
+#include <options.h>
 
 extern FILE *yyin, *yyout;
 
index 1072d3589d8c857f8cc7c2a77f5644cbfb0a5292..6c792615df58f888cef4afe5d1340f83d5f51beb 100644 (file)
--- a/parse.lex
+++ b/parse.lex
@@ -48,7 +48,7 @@ static char rcsid[] = "$Id$";
 #include <sys/param.h>
 #include <netinet/in.h>
 #include "sudo.h"
-#include "options.h"
+#include <options.h>
 #include "y.tab.h"
 
 #undef yywrap          /* guard against a yywrap macro */
index c22024e4d1fa666ed7b5272452d1d101d9d2b721..ba59ff1511ad9d50a012da9f49c5930d35a47f8f 100644 (file)
@@ -51,7 +51,7 @@ static char rcsid[] = "$Id$";
 #endif /* HAVE_LSEARCH */
 
 #include "sudo.h"
-#include "options.h"
+#include <options.h>
 
 #ifndef HAVE_LSEARCH
 #include "emul/search.h"
diff --git a/sudo.c b/sudo.c
index 04ee06a60ad158edab5ee07242fadd26ec7d05e8..42bc556636829852bdedd87b82fb62b408833e1a 100644 (file)
--- a/sudo.c
+++ b/sudo.c
@@ -88,7 +88,7 @@ static char rcsid[] = "$Id$";
 #endif /* __osf__ && HAVE_C2_SECURITY */
 
 #include "sudo.h"
-#include "options.h"
+#include <options.h>
 #include "version.h"
 
 #ifndef STDC_HEADERS
diff --git a/sudo.h b/sudo.h
index ca0768fcefdf83c94f86a598c3134a9fde76929d..5a4dd2d310cd446d00e361e42e3ce19c8807a097 100644 (file)
--- a/sudo.h
+++ b/sudo.h
@@ -31,8 +31,8 @@
 #ifndef _SUDO_SUDO_H
 #define _SUDO_SUDO_H
 
+#include <pathnames.h>
 #include "compat.h"
-#include "pathnames.h"
 
 /*
  * IP address and netmask pairs for checking against local interfaces.
index a3315c5cab5f0c3375d6d174db8cb14a4b5db126..756328300fae009f5a347f8a616175d015f793e8 100644 (file)
@@ -46,7 +46,7 @@ static char rcsid[] = "$Id$";
 #include <netinet/in.h>
 
 #include "sudo.h"
-#include "options.h"
+#include <options.h>
 
 #ifndef STDC_HEADERS
 #ifdef HAVE_PUTENV
index eb7c94c544d0ced430d6a0f33b7c09f52bcf1541..ec33d6f417d6950acc22643abd42571f3e9ac66d 100644 (file)
@@ -61,7 +61,7 @@ static char rcsid[] = "$Id$";
 #endif /* HAVE_TERMIO_H */
 #endif /* HAVE_TERMIOS_H */
 
-#include "pathnames.h"
+#include <pathnames.h>
 #include "compat.h"
 
 #ifndef _PASSWD_LEN
diff --git a/utime.c b/utime.c
index 424a8166f2d527731ee481491fa2cce4f6611cb3..3f086c5978a34d1162d25987f30e455aac793954 100644 (file)
--- a/utime.c
+++ b/utime.c
@@ -39,7 +39,7 @@ static char rcsid[] = "$Id$";
 #include <sys/types.h>
 #include <sys/time.h>
 
-#include "pathnames.h"
+#include <pathnames.h>
 #include "compat.h"
 #include "emul/utime.h"
 
index 7b8191ca1a34ee9ca0cd7ecd13b82ef3932aa4c9..e2848b052b868c3c3ab62da1d21933c6d4f53fa5 100644 (file)
--- a/visudo.c
+++ b/visudo.c
@@ -59,7 +59,7 @@ static char rcsid[] = "$Id$";
 #include <netinet/in.h>
 
 #include "sudo.h"
-#include "options.h"
+#include <options.h>
 #include "version.h"
 
 #ifndef STDC_HEADERS