]> granicus.if.org Git - sudo/commitdiff
Avoid using a leading underbar in defines as they are reserved in
authorTodd C. Miller <Todd.Miller@courtesan.com>
Thu, 21 May 2015 17:13:20 +0000 (11:13 -0600)
committerTodd C. Miller <Todd.Miller@courtesan.com>
Thu, 21 May 2015 17:13:20 +0000 (11:13 -0600)
ISO C.

60 files changed:
config.h.in
configure.ac
include/compat/endian.h
include/compat/fnmatch.h
include/compat/getaddrinfo.h
include/compat/getopt.h
include/compat/glob.h
include/compat/nss_dbdefs.h
include/compat/sha2.h
include/compat/stdbool.h
include/compat/timespec.h
include/sudo_alloc.h
include/sudo_compat.h
include/sudo_conf.h
include/sudo_debug.h
include/sudo_dso.h
include/sudo_event.h
include/sudo_fatal.h
include/sudo_gettext.h
include/sudo_lbuf.h
include/sudo_plugin.h
include/sudo_queue.h
include/sudo_util.h
lib/util/fatal.c
plugins/sudoers/bsm_audit.h
plugins/sudoers/check.h
plugins/sudoers/defaults.h
plugins/sudoers/ins_2001.h
plugins/sudoers/ins_classic.h
plugins/sudoers/ins_csops.h
plugins/sudoers/ins_goons.h
plugins/sudoers/insults.h
plugins/sudoers/interfaces.h
plugins/sudoers/iolog.h
plugins/sudoers/linux_audit.h
plugins/sudoers/logging.h
plugins/sudoers/parse.c
plugins/sudoers/parse.h
plugins/sudoers/pwutil.h
plugins/sudoers/redblack.c
plugins/sudoers/redblack.h
plugins/sudoers/regress/iolog_path/check_iolog_path.c
plugins/sudoers/solaris_audit.h
plugins/sudoers/sssd.c
plugins/sudoers/sudo_nss.h
plugins/sudoers/sudo_printf.c
plugins/sudoers/sudoers.c
plugins/sudoers/sudoers.h
plugins/sudoers/sudoers_debug.h
plugins/sudoers/sudoers_version.h
plugins/sudoers/testsudoers.c
plugins/sudoers/toke.c
plugins/sudoers/toke.h
plugins/sudoers/toke.l
plugins/sudoers/visudo.c
src/net_ifs.c
src/sudo.h
src/sudo_exec.h
src/sudo_plugin_int.h
src/sudo_usage.h.in

index c84d5b1bd1e395e5106e461916e25ea4e8e4f568..dd5590ee01901258b71702aa6487dedbd8b36f67 100644 (file)
@@ -1,7 +1,7 @@
 /* config.h.in.  Generated from configure.ac by autoheader.  */
 
-#ifndef _SUDO_CONFIG_H
-#define _SUDO_CONFIG_H
+#ifndef SUDO_CONFIG_H
+#define SUDO_CONFIG_H
 
 /* Define to 1 if the `syslog' function returns a non-zero int to denote
    failure. */
 # define BSD_COMP
 #endif /* __svr4__ */
 
-#endif /* _SUDO_CONFIG_H */
+#endif /* SUDO_CONFIG_H */
index fe4c1bd6e9a5926b5951cd928e7ff8db055f799d..ab879c116841d73b8d9bd4161b401bc4ab14764a 100644 (file)
@@ -4336,12 +4336,12 @@ AH_TEMPLATE(HAVE___NSS_XBYY_BUF_ALLOC, [Define to 1 if you have the `__nss_XbyY_
 dnl
 dnl Bits to copy verbatim into config.h.in
 dnl
-AH_TOP([#ifndef _SUDO_CONFIG_H
-#define _SUDO_CONFIG_H])
+AH_TOP([#ifndef SUDO_CONFIG_H
+#define SUDO_CONFIG_H])
 
 AH_BOTTOM([/* BSD compatibility on some SVR4 systems. */
 #ifdef __svr4__
 # define BSD_COMP
 #endif /* __svr4__ */
 
-#endif /* _SUDO_CONFIG_H */])
+#endif /* SUDO_CONFIG_H */])
index 68880089b899b89236c9ccb3a27a288841706751..4c1a739bd2bf494bca2807bc50d7bd10ca217384 100644 (file)
@@ -14,8 +14,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _COMPAT_ENDIAN_H
-#define _COMPAT_ENDIAN_H
+#ifndef COMPAT_ENDIAN_H
+#define COMPAT_ENDIAN_H
 
 #ifndef BYTE_ORDER
 # undef LITTLE_ENDIAN
@@ -69,4 +69,4 @@
 # endif
 #endif /* BYTE_ORDER */
 
-#endif /* _COMPAT_ENDIAN_H */
+#endif /* COMPAT_ENDIAN_H */
index b4c418eac37685da55bd490c7a1238f66361b306..4410e65baa12e20142ebf7b944a496131435d42e 100644 (file)
@@ -14,8 +14,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _FNMATCH_H
-#define _FNMATCH_H
+#ifndef COMPAT_FNMATCH_H
+#define COMPAT_FNMATCH_H
 
 #define        FNM_NOMATCH     1               /* String does not match pattern */
 
@@ -29,4 +29,4 @@ __dso_public int sudo_fnmatch(const char *pattern, const char *string, int flags
 
 #define fnmatch(_a, _b, _c)    sudo_fnmatch((_a), (_b), (_c))
 
-#endif /* _FNMATCH_H */
+#endif /* COMPAT_FNMATCH_H */
index 536d2acb78bd5bb3b99c62ff380cc9624e2e81c6..6f2f203eb34864f67ebe7fc435226107cc5aa4ce 100644 (file)
@@ -20,8 +20,8 @@
  * work.
  */
 
-#ifndef _COMPAT_GETADDRINFO_H
-#define _COMPAT_GETADDRINFO_H
+#ifndef COMPAT_GETADDRINFO_H
+#define COMPAT_GETADDRINFO_H
 
 #include <config.h>
 
@@ -80,4 +80,4 @@ __dso_public const char *sudo_gai_strerror(int ecode);
 #define gai_strerror(_a) sudo_gai_strerror((_a))
 
 #endif /* !HAVE_GETADDRINFO */
-#endif /* _COMPAT_GETADDRINFO_H */
+#endif /* COMPAT_GETADDRINFO_H */
index 9f51d3c3e648907980cc041280c54bfd55d0d659..8f4951836318f46a7f60a8fc669bb407589ba2f4 100644 (file)
@@ -31,8 +31,8 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
-#ifndef _SUDO_GETOPT_H_
-#define _SUDO_GETOPT_H_
+#ifndef COMPAT_GETOPT_H
+#define COMPAT_GETOPT_H
 
 /*
  * GNU-like getopt_long()/getopt_long_only() with 4.4BSD optreset extension.
@@ -78,4 +78,4 @@ extern        int optind;
 extern int optopt;
 extern int optreset;
  
-#endif /* !_SUDO_GETOPT_H_ */
+#endif /* !COMPAT_GETOPT_H */
index 621ead795cde7ec97722e3a0ffd38e61c1e85af3..40f5d39e1ccaca11165e7e854218c0aa8134826e 100644 (file)
@@ -32,8 +32,8 @@
  *     @(#)glob.h      8.1 (Berkeley) 6/2/93
  */
 
-#ifndef _GLOB_H_
-#define        _GLOB_H_
+#ifndef COMPAT_GLOB_H
+#define        COMPAT_GLOB_H
 
 struct stat;
 typedef struct {
@@ -73,4 +73,4 @@ __dso_public void sudo_globfree(glob_t *);
 #define glob(_a, _b, _c, _d) sudo_glob((_a), (_b), (_c), (_d))
 #define globfree(_a) sudo_globfree((_a))
 
-#endif /* !_GLOB_H_ */
+#endif /* !COMPAT_GLOB_H */
index 129802ba35f6c3b475a52c5c0af56df4fcb44181..279fda909fec9b597ab8f093454148cd3fa0a800 100644 (file)
@@ -14,8 +14,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _COMPAT_NSS_DBDEFS_H
-#define _COMPAT_NSS_DBDEFS_H
+#ifndef COMPAT_NSS_DBDEFS_H
+#define COMPAT_NSS_DBDEFS_H
 
 /*
  * Bits of nss_dbdefs.h and nss_common.h needed to implement
@@ -103,4 +103,4 @@ extern nss_status_t nss_search(nss_db_root_t *, nss_db_initf_t, int, void *);
 extern nss_XbyY_buf_t *_nss_XbyY_buf_alloc(int, int);
 extern void _nss_XbyY_buf_free(nss_XbyY_buf_t *);
 
-#endif /* _COMPAT_NSS_DBDEFS_H */
+#endif /* COMPAT_NSS_DBDEFS_H */
index 7c189b81afdbfbb6af41fc370f3eefd98b8a09c1..9f71e5044dc7d87d6a577843e300045ce211d591 100644 (file)
@@ -19,8 +19,8 @@
  * by Steve Reid and Wei Dai respectively.
  */
 
-#ifndef _SUDOERS_SHA2_H
-#define _SUDOERS_SHA2_H
+#ifndef COMPAT_SHA2_H
+#define COMPAT_SHA2_H
 
 #define        SHA224_BLOCK_LENGTH             64
 #define        SHA224_DIGEST_LENGTH            28
@@ -95,4 +95,4 @@ __dso_public void sudo_SHA512Final(uint8_t digest[SHA512_DIGEST_LENGTH], SHA2_CT
 #define SHA512Update           sudo_SHA512Update
 #define SHA512Final            sudo_SHA512Final
 
-#endif /* _SUDOERS_SHA2_H */
+#endif /* COMPAT_SHA2_H */
index a6e65ea1001162b8e90200c9d37ef62d5787a274..b865a46c43d5b922b976a040d795230acd7a5311 100644 (file)
@@ -5,8 +5,8 @@
  * Public domain.
  */
 
-#ifndef        _COMPAT_STDBOOL_H_
-#define        _COMPAT_STDBOOL_H_      
+#ifndef        COMPAT_STDBOOL_H
+#define        COMPAT_STDBOOL_H
 
 #ifndef __cplusplus
 
@@ -41,4 +41,4 @@ typedef enum {
 /* Inform that everything is fine */
 #define __bool_true_false_are_defined 1
 
-#endif /* _COMPAT_STDBOOL_H_ */
+#endif /* COMPAT_STDBOOL_H */
index 4c9dedc8e0b8aae003957146b40c8c6a8c7724b4..e1378f7ec1f7d9eee076762ddc21e4711cf89a57 100644 (file)
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDO_TIMESPEC_H
-#define _SUDO_TIMESPEC_H
+#ifndef COMPAT_TIMESPEC_H
+#define COMPAT_TIMESPEC_H
 
 struct timespec {
     time_t     tv_sec;
     long       tv_nsec;
 };
 
-#endif /* _SUDO_TIMESPEC_H */
+#endif /* COMPAT_TIMESPEC_H */
index 96ac3b24217eed28ac7a7ea2d765cb24ec92b852..1ea8b4b4dee954d6d909f74664083486831fd992 100644 (file)
@@ -15,8 +15,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDO_ALLOC_H
-#define _SUDO_ALLOC_H
+#ifndef SUDO_ALLOC_H
+#define SUDO_ALLOC_H
 
 #include <stdarg.h>
 
@@ -45,4 +45,4 @@ __dso_public char *sudo_estrndup_v1(const char *src, size_t maxlen) __malloc_lik
 #define sudo_estrdup(_a) sudo_estrdup_v1((_a))
 #define sudo_estrndup(_a, _b) sudo_estrndup_v1((_a), (_b))
 
-#endif /* _SUDO_ALLOC_H */
+#endif /* SUDO_ALLOC_H */
index fa8d6d7ff6e8a5a8be04d13394a09aa7b2d53344..7f9aae68aad44052dbce5ab28fdf4812a14211a8 100644 (file)
@@ -19,8 +19,8 @@
  * Materiel Command, USAF, under agreement number F39502-99-1-0512.
  */
 
-#ifndef _SUDO_COMPAT_H
-#define _SUDO_COMPAT_H
+#ifndef SUDO_COMPAT_H
+#define SUDO_COMPAT_H
 
 #include <stdio.h>
 #ifdef STDC_HEADERS
@@ -464,7 +464,7 @@ __dso_public int sudo_sig2str(int signo, char *signame);
 # undef sig2str
 # define sig2str(_a, _b) sudo_sig2str((_a), (_b))
 #endif /* HAVE_SIG2STR */
-#if !defined(HAVE_INET_NTOP) && defined(_SUDO_NET_IFS_C)
+#if !defined(HAVE_INET_NTOP) && defined(SUDO_NET_IFS_C)
 __dso_public char *sudo_inet_ntop(int af, const void *src, char *dst, socklen_t size);
 # undef inet_ntop
 # define inet_ntop(_a, _b, _c, _d) sudo_inet_ntop((_a), (_b), (_c), (_d))
@@ -485,4 +485,4 @@ __dso_public void *sudo_reallocarray(void *ptr, size_t nmemb, size_t size);
 # define reallocarray(_a, _b, _c) sudo_reallocarray((_a), (_b), (_c))
 #endif /* HAVE_REALLOCARRAY */
 
-#endif /* _SUDO_COMPAT_H */
+#endif /* SUDO_COMPAT_H */
index d9236deef75618be8f2138c92151a0f4ba58bd5f..f916a71cc17dd1e8c81192113d22034daffa557d 100644 (file)
@@ -14,8 +14,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDO_CONF_H
-#define _SUDO_CONF_H
+#ifndef SUDO_CONF_H
+#define SUDO_CONF_H
 
 #include "sudo_queue.h"
 
@@ -78,4 +78,4 @@ __dso_public int sudo_conf_max_groups_v1(void);
 #define sudo_conf_group_source() sudo_conf_group_source_v1()
 #define sudo_conf_max_groups() sudo_conf_max_groups_v1()
 
-#endif /* _SUDO_CONF_H */
+#endif /* SUDO_CONF_H */
index 5d392699d3f2763a86bbb81423813fa850809977..15494ec6885c1e6df7a7e971976c45c5f49dc537 100644 (file)
@@ -14,8 +14,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDO_DEBUG_H
-#define _SUDO_DEBUG_H
+#ifndef SUDO_DEBUG_H
+#define SUDO_DEBUG_H
 
 #include <stdarg.h>
 #ifdef HAVE_STDBOOL_H
@@ -273,4 +273,4 @@ __dso_public void sudo_debug_write2_v1(int fd, const char *func, const char *fil
 #define sudo_debug_vprintf2(_a, _b, _c, _d, _e, _f) sudo_debug_vprintf2_v1((_a), (_b), (_c), (_d), (_e), (_f))
 #define sudo_debug_write2(_a, _b, _c, _d, _e, _f, _g) sudo_debug_write2_v1((_a), (_b), (_c), (_d), (_e), (_f), (_g))
 
-#endif /* _SUDO_DEBUG_H */
+#endif /* SUDO_DEBUG_H */
index d953d5b8da27cafccfaaf8cd0bab530d369f90ff..1adbd85f72b4df9c74b5e953b048754e0ae7cc25 100644 (file)
@@ -14,8 +14,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDO_DSO_H
-#define _SUDO_DSO_H
+#ifndef SUDO_DSO_H
+#define SUDO_DSO_H
 
 /* Values for sudo_dso_load() mode. */
 #define SUDO_DSO_LAZY   0x1
@@ -52,4 +52,4 @@ __dso_public void sudo_dso_preload_table_v1(struct sudo_preload_table *table);
 #define sudo_dso_load(_a, _b) sudo_dso_load_v1((_a), (_b))
 #define sudo_dso_preload_table(_a) sudo_dso_preload_table_v1((_a))
 
-#endif /* _SUDO_DSO_H */
+#endif /* SUDO_DSO_H */
index a05016f0d1353c015da50398654623dea72a2c5c..21b62cdfd1f9f3826bc15971ae0a2ef2ef1c68d5 100644 (file)
@@ -14,8 +14,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDO_EVENT_H
-#define _SUDO_EVENT_H
+#ifndef SUDO_EVENT_H
+#define SUDO_EVENT_H
 
 #include "sudo_queue.h"
 
@@ -160,4 +160,4 @@ int sudo_ev_add_impl(struct sudo_event_base *base, struct sudo_event *ev);
 int sudo_ev_del_impl(struct sudo_event_base *base, struct sudo_event *ev);
 int sudo_ev_scan_impl(struct sudo_event_base *base, int flags);
 
-#endif /* _SUDO_EVENT_H */
+#endif /* SUDO_EVENT_H */
index 4e647f601748ca461ab3682faf18799b99c9852a..f38b56355dfc327725a9ed22b4c713fb2a4cf0c8 100644 (file)
@@ -14,8 +14,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDO_FATAL_H_
-#define        _SUDO_FATAL_H_
+#ifndef SUDO_FATAL_H
+#define        SUDO_FATAL_H
 
 #include <stdarg.h>
 #ifdef HAVE_STDBOOL_H
@@ -156,4 +156,4 @@ __dso_public void sudo_warn_set_conversation_v1(int (*conv)(int num_msgs, const
 # define sudo_warn_gettext(_a) sudo_warn_gettext_v1(NULL, (_a))
 #endif
 
-#endif /* _SUDO_FATAL_H_ */
+#endif /* SUDO_FATAL_H */
index 68b91c34bd2c1e6803f2dffda830eb2f087f2869..bb738328015f286413a8bb368176ff2576116b7f 100644 (file)
@@ -14,8 +14,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDO_GETTEXT_H
-#define _SUDO_GETTEXT_H
+#ifndef SUDO_GETTEXT_H
+#define SUDO_GETTEXT_H
 
 /*
  * Solaris locale.h includes libintl.h which causes problems when we
@@ -72,4 +72,4 @@
 
 #endif /* HAVE_LIBINTL_H */
 
-#endif /* _SUDO_GETTEXT_H */
+#endif /* SUDO_GETTEXT_H */
index 18cf23c990f0a9aed5f803d89fff2c7fea0f9368..4972905dff2af123ed58e002c22f5a32c323cb72 100644 (file)
@@ -17,8 +17,8 @@
  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#ifndef _SUDO_LBUF_H
-#define _SUDO_LBUF_H
+#ifndef SUDO_LBUF_H
+#define SUDO_LBUF_H
 
 /*
  * Line buffer struct.
@@ -47,4 +47,4 @@ __dso_public void sudo_lbuf_print_v1(struct sudo_lbuf *lbuf);
 #define sudo_lbuf_append_quoted sudo_lbuf_append_quoted_v1
 #define sudo_lbuf_print(_a) sudo_lbuf_print_v1((_a))
 
-#endif /* _SUDO_LBUF_H */
+#endif /* SUDO_LBUF_H */
index 9d380c3c59c67fc85e7dda7d6b825040a450f5c8..de15926325461cb6d0f688a0d0ab70a979928f7c 100644 (file)
@@ -14,8 +14,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDO_PLUGIN_H
-#define _SUDO_PLUGIN_H
+#ifndef SUDO_PLUGIN_H
+#define SUDO_PLUGIN_H
 
 /* API version major/minor */
 #define SUDO_API_VERSION_MAJOR 1
@@ -192,4 +192,4 @@ struct sudoers_group_plugin {
     int (*query)(const char *user, const char *group, const struct passwd *pwd);
 };
 
-#endif /* _SUDO_PLUGIN_H */
+#endif /* SUDO_PLUGIN_H */
index 9392c674d2ec51acbf9e32a66dabc7fcac50b8d7..98010eecdb3275afb22c31d2a761e0c6188b2cd5 100644 (file)
@@ -30,8 +30,8 @@
  * $FreeBSD: head/sys/sys/queue.h 251887 2013-06-18 02:57:56Z lstewart $
  */
 
-#ifndef _SUDO_QUEUE_H_
-#define        _SUDO_QUEUE_H_
+#ifndef SUDO_QUEUE_H
+#define        SUDO_QUEUE_H
 
 /*
  * This file defines four types of data structures: singly-linked lists,
@@ -803,4 +803,4 @@ struct {                                                            \
        (head)->tqh_last = last;                                        \
 } while (0)
 
-#endif /* !_SUDO_QUEUE_H_ */
+#endif /* !SUDO_QUEUE_H */
index 1d7fb63c33522b1f2510298ad2f57c243434c8b0..57f1ee437d98546924efdc29811756cabc466812 100644 (file)
@@ -14,8 +14,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDO_UTIL_H
-#define _SUDO_UTIL_H
+#ifndef SUDO_UTIL_H
+#define SUDO_UTIL_H
 
 #ifdef HAVE_STDBOOL_H
 # include <stdbool.h>
@@ -232,4 +232,4 @@ __dso_public bool sudo_term_restore_v1(int fd, bool flush);
 __dso_public void sudo_get_ttysize_v1(int *rowp, int *colp);
 #define sudo_get_ttysize(_a, _b) sudo_get_ttysize_v1((_a), (_b))
 
-#endif /* _SUDO_UTIL_H */
+#endif /* SUDO_UTIL_H */
index e4b9fc9b967694212a2a75fe6c929b89c755c070..0ce1ab638596bf3852a954f398995be7fff3b675 100644 (file)
@@ -49,7 +49,7 @@ static sudo_conv_t sudo_warn_conversation;
 static bool (*sudo_warn_setlocale)(bool, int *);
 static bool (*sudo_warn_setlocale_prev)(bool, int *);
 
-static void _warning(int errnum, const char *fmt, va_list ap);
+static void warning(int errnum, const char *fmt, va_list ap);
 
 static void
 do_cleanup(void)
@@ -70,7 +70,7 @@ sudo_fatal_nodebug_v1(const char *fmt, ...)
     va_list ap;
 
     va_start(ap, fmt);
-    _warning(errno, fmt, ap);
+    warning(errno, fmt, ap);
     va_end(ap);
     do_cleanup();
     exit(EXIT_FAILURE);
@@ -82,7 +82,7 @@ sudo_fatalx_nodebug_v1(const char *fmt, ...)
     va_list ap;
 
     va_start(ap, fmt);
-    _warning(0, fmt, ap);
+    warning(0, fmt, ap);
     va_end(ap);
     do_cleanup();
     exit(EXIT_FAILURE);
@@ -91,7 +91,7 @@ sudo_fatalx_nodebug_v1(const char *fmt, ...)
 void
 sudo_vfatal_nodebug_v1(const char *fmt, va_list ap)
 {
-    _warning(errno, fmt, ap);
+    warning(errno, fmt, ap);
     do_cleanup();
     exit(EXIT_FAILURE);
 }
@@ -99,7 +99,7 @@ sudo_vfatal_nodebug_v1(const char *fmt, va_list ap)
 void
 sudo_vfatalx_nodebug_v1(const char *fmt, va_list ap)
 {
-    _warning(0, fmt, ap);
+    warning(0, fmt, ap);
     do_cleanup();
     exit(EXIT_FAILURE);
 }
@@ -110,7 +110,7 @@ sudo_warn_nodebug_v1(const char *fmt, ...)
     va_list ap;
 
     va_start(ap, fmt);
-    _warning(errno, fmt, ap);
+    warning(errno, fmt, ap);
     va_end(ap);
 }
 
@@ -119,24 +119,24 @@ sudo_warnx_nodebug_v1(const char *fmt, ...)
 {
     va_list ap;
     va_start(ap, fmt);
-    _warning(0, fmt, ap);
+    warning(0, fmt, ap);
     va_end(ap);
 }
 
 void
 sudo_vwarn_nodebug_v1(const char *fmt, va_list ap)
 {
-    _warning(errno, fmt, ap);
+    warning(errno, fmt, ap);
 }
 
 void
 sudo_vwarnx_nodebug_v1(const char *fmt, va_list ap)
 {
-    _warning(0, fmt, ap);
+    warning(0, fmt, ap);
 }
 
 static void
-_warning(int errnum, const char *fmt, va_list ap)
+warning(int errnum, const char *fmt, va_list ap)
 {
     int cookie;
 
index 327e9f5ac13de0ba5cfc555432b9e6b7d15d5aa0..e5fe58f410b99a62f1c490a5e3277d3a22c6c384 100644 (file)
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDOERS_BSM_AUDIT_H
-#define        _SUDOERS_BSM_AUDIT_H
+#ifndef SUDOERS_BSM_AUDIT_H
+#define        SUDOERS_BSM_AUDIT_H
 
 int    bsm_audit_success(char *argv[]);
 int    bsm_audit_failure(char *argv[], char const * const, va_list);
 
-#endif /* _SUDOERS_BSM_AUDIT_H */
+#endif /* SUDOERS_BSM_AUDIT_H */
index c28d93413d518884edd48f3fbea6f44d0d0c9338..c8c48fc3c3f9adc3fbcbb120e1e994fdfeb22915 100644 (file)
@@ -19,8 +19,8 @@
  * Materiel Command, USAF, under agreement number F39502-99-1-0512.
  */
 
-#ifndef _SUDOERS_CHECK_H
-#define _SUDOERS_CHECK_H
+#ifndef SUDOERS_CHECK_H
+#define SUDOERS_CHECK_H
 
 /* Status codes for timestamp_status() */
 #define TS_CURRENT             0
@@ -65,4 +65,4 @@ bool  update_timestamp(struct passwd *pw);
 int   build_timestamp(struct passwd *pw);
 int   timestamp_status(struct passwd *pw);
 
-#endif /* _SUDOERS_CHECK_H */
+#endif /* SUDOERS_CHECK_H */
index 91535e59013b388eba5724fa409873e6cdb8206d..e12f64dc705a62ccdd8de7b02081b8731f95738a 100644 (file)
@@ -19,8 +19,8 @@
  * Materiel Command, USAF, under agreement number F39502-99-1-0512.
  */
 
-#ifndef _SUDOERS_DEFAULTS_H
-#define _SUDOERS_DEFAULTS_H
+#ifndef SUDOERS_DEFAULTS_H
+#define SUDOERS_DEFAULTS_H
 
 #include <def_data.h>
 
@@ -117,4 +117,4 @@ bool check_defaults(int what, bool quiet);
 
 extern struct sudo_defs_types sudo_defs_table[];
 
-#endif /* _SUDOERS_DEFAULTS_H */
+#endif /* SUDOERS_DEFAULTS_H */
index 604c3e437c261bdc504cfedb84f902b49b1c1872..b1fc30c0f3cc158640bd1d1edf0522cec29c5ed5 100644 (file)
@@ -14,8 +14,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDOERS_INS_2001_H
-#define _SUDOERS_INS_2001_H
+#ifndef SUDOERS_INS_2001_H
+#define SUDOERS_INS_2001_H
 
     /*
      * HAL insults (paraphrased) from 2001.
@@ -30,4 +30,4 @@
     "This mission is too important for me to allow you to jeopardize it.",
     "I feel much better now.",
 
-#endif /* _SUDOERS_INS_2001_H */
+#endif /* SUDOERS_INS_2001_H */
index 3cb35ebd7c3bbcff866cc67aa8acca79ced40f98..ddf27c85a98c0d08b62710e3af13769080bcd7cf 100644 (file)
@@ -14,8 +14,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDOERS_INS_CLASSIC_H
-#define _SUDOERS_INS_CLASSIC_H
+#ifndef SUDOERS_INS_CLASSIC_H
+#define SUDOERS_INS_CLASSIC_H
 
     /*
      * Insults from the original sudo(8).
@@ -34,4 +34,4 @@
     "Do you think like you type?",
     "Your mind just hasn't been the same since the electro-shock, has it?",
 
-#endif /* _SUDOERS_INS_CLASSIC_H */
+#endif /* SUDOERS_INS_CLASSIC_H */
index f4ecabd9718dc690f4681b23658ef13bceb3bd31..5ddd126e556286a784bc84efe251d9bbd689af89 100644 (file)
@@ -15,8 +15,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDOERS_INS_CSOPS_H
-#define _SUDOERS_INS_CSOPS_H
+#ifndef SUDOERS_INS_CSOPS_H
+#define SUDOERS_INS_CSOPS_H
 
     /*
      * CSOps insults (may be site dependent).
@@ -36,4 +36,4 @@
     "Have you considered trying to match wits with a rutabaga?",
     "You speak an infinite deal of nothing",
 
-#endif /* _SUDOERS_INS_CSOPS_H */
+#endif /* SUDOERS_INS_CSOPS_H */
index 117393f4253e2d9c0d0f749d6afc4d6ec462c3f2..4dbd47f70485f240e14a84dec4c6c74d0aba8a2e 100644 (file)
@@ -14,8 +14,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDOERS_INS_GOONS_H
-#define _SUDOERS_INS_GOONS_H
+#ifndef SUDOERS_INS_GOONS_H
+#define SUDOERS_INS_GOONS_H
 
     /*
      * Insults from the "Goon Show."
@@ -45,4 +45,4 @@
     "It's only your word against mine.",
     "I think ... err ... I think ... I think I'll go home",
 
-#endif /* _SUDOERS_INS_GOONS_H */
+#endif /* SUDOERS_INS_GOONS_H */
index e5d441a7e3e212f8da9123a93e6e6fc62b6520e9..c54b3e4091eb25ec9a1755d7ccc1c107dd8d090e 100644 (file)
@@ -15,8 +15,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDOERS_INSULTS_H
-#define _SUDOERS_INSULTS_H
+#ifndef SUDOERS_INSULTS_H
+#define SUDOERS_INSULTS_H
 
 #if defined(HAL_INSULTS) || defined(GOONS_INSULTS) || defined(CLASSIC_INSULTS) || defined(CSOPS_INSULTS)
 
@@ -58,4 +58,4 @@ char *insults[] = {
 
 #endif /* HAL_INSULTS || GOONS_INSULTS || CLASSIC_INSULTS || CSOPS_INSULTS */
 
-#endif /* _SUDOERS_INSULTS_H */
+#endif /* SUDOERS_INSULTS_H */
index f60ba1d7af369dacb05431786c30beecee352384..a0857af457b50201478919837e995c61acd3fb6b 100644 (file)
@@ -19,8 +19,8 @@
  * Materiel Command, USAF, under agreement number F39502-99-1-0512.
  */
 
-#ifndef _SUDOERS_INTERFACES_H
-#define _SUDOERS_INTERFACES_H
+#ifndef SUDOERS_INTERFACES_H
+#define SUDOERS_INTERFACES_H
 
 /*
  * Union to hold either strucr in_addr or in6_add
@@ -52,4 +52,4 @@ void dump_interfaces(const char *);
 void set_interfaces(const char *);
 struct interface_list *get_interfaces(void);
 
-#endif /* _SUDOERS_INTERFACES_H */
+#endif /* SUDOERS_INTERFACES_H */
index 54d9955d80b93a597da3eb84f19ef24ff417589f..3d1dba7c5e49b88738d3679c90959078b89c7e4c 100644 (file)
@@ -14,8 +14,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDOERS_IOLOG_H
-#define _SUDOERS_IOLOG_H
+#ifndef SUDOERS_IOLOG_H
+#define SUDOERS_IOLOG_H
 
 /*
  * I/O log fd numbers as stored in the timing file.
@@ -56,4 +56,4 @@ static struct io_log_file io_log_files[] = {
     { false, NULL }            /* IOFD_MAX */
 };
 
-#endif /* _SUDOERS_IOLOG_H */
+#endif /* SUDOERS_IOLOG_H */
index 090de6402eccba29ecdb518a0747800fe7564058..07413aa53aa134ed50f78bf7d94a9fbe27f261d4 100644 (file)
@@ -14,9 +14,9 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDOERS_LINUX_AUDIT_H
-#define        _SUDOERS_LINUX_AUDIT_H
+#ifndef SUDOERS_LINUX_AUDIT_H
+#define        SUDOERS_LINUX_AUDIT_H
 
 int    linux_audit_command(char *argv[], int result);
 
-#endif /* _SUDOERS_LINUX_AUDIT_H */
+#endif /* SUDOERS_LINUX_AUDIT_H */
index a565e1584149585737c63183ca6fdbcebe569e80..f5659277aec8ef4d0e85c6e2a371e58db752df47 100644 (file)
@@ -15,8 +15,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDOERS_LOGGING_H
-#define _SUDOERS_LOGGING_H
+#ifndef SUDOERS_LOGGING_H
+#define SUDOERS_LOGGING_H
 
 #include <syslog.h>
 #ifdef __STDC__
@@ -58,7 +58,7 @@
  */
 #define LOG_INDENT     "    "
 
-#ifndef _SUDO_MAIN
+#ifndef SUDO_MAIN
 /* XXX - needed for auditing */
 extern int NewArgc;
 extern char **NewArgv;
@@ -78,4 +78,4 @@ void log_warningx(int flags, const char *fmt, ...) __printflike(2, 3);
 void sudoers_initlocale(const char *ulocale, const char *slocale);
 void writeln_wrap(FILE *fp, char *line, size_t len, size_t maxlen);
 
-#endif /* _SUDOERS_LOGGING_H */
+#endif /* SUDOERS_LOGGING_H */
index 2feb328e68f49b7f209b5d4c23f361ec96fcc996..7d28e545eba526c3b7a4f3d2e2197485f3188df7 100644 (file)
@@ -63,7 +63,7 @@ static int sudo_file_open(struct sudo_nss *);
 static int sudo_file_parse(struct sudo_nss *);
 static int sudo_file_setdefs(struct sudo_nss *);
 static void print_member(struct sudo_lbuf *lbuf, struct member *m, int alias_type);
-static void print_member2(struct sudo_lbuf *lbuf, struct member *m, const char *separator, int alias_type);
+static void print_member_sep(struct sudo_lbuf *lbuf, struct member *m, const char *separator, int alias_type);
 
 /* sudo_nss implementation */
 struct sudo_nss sudo_nss_file = {
@@ -537,7 +537,7 @@ sudo_file_display_priv_long(struct passwd *pw, struct userspec *us,
                sudo_lbuf_append(lbuf, _("    Commands:\n"));
            }
            sudo_lbuf_append(lbuf, "\t");
-           print_member2(lbuf, cs->cmnd, "\n\t", CMNDALIAS);
+           print_member_sep(lbuf, cs->cmnd, "\n\t", CMNDALIAS);
            sudo_lbuf_append(lbuf, "\n");
            prev_cs = cs;
            nfound++;
@@ -752,13 +752,13 @@ done:
  * Print the contents of a struct member to stdout
  */
 static void
-_print_member(struct sudo_lbuf *lbuf, char *name, int type, int negated,
+print_member_int(struct sudo_lbuf *lbuf, char *name, int type, int negated,
     const char *separator, int alias_type)
 {
     struct alias *a;
     struct member *m;
     struct sudo_command *c;
-    debug_decl(_print_member, SUDOERS_DEBUG_NSS)
+    debug_decl(print_member_int, SUDOERS_DEBUG_NSS)
 
     switch (type) {
        case ALL:
@@ -782,7 +782,7 @@ _print_member(struct sudo_lbuf *lbuf, char *name, int type, int negated,
                TAILQ_FOREACH(m, &a->members, entries) {
                    if (m != TAILQ_FIRST(&a->members))
                        sudo_lbuf_append(lbuf, "%s", separator);
-                   _print_member(lbuf, m->name, m->type,
+                   print_member_int(lbuf, m->name, m->type,
                        negated ? !m->negated : m->negated, separator,
                        alias_type);
                }
@@ -800,12 +800,12 @@ _print_member(struct sudo_lbuf *lbuf, char *name, int type, int negated,
 static void
 print_member(struct sudo_lbuf *lbuf, struct member *m, int alias_type)
 {
-    _print_member(lbuf, m->name, m->type, m->negated, ", ", alias_type);
+    print_member_int(lbuf, m->name, m->type, m->negated, ", ", alias_type);
 }
 
 static void
-print_member2(struct sudo_lbuf *lbuf, struct member *m, const char *separator,
-    int alias_type)
+print_member_sep(struct sudo_lbuf *lbuf, struct member *m,
+    const char *separator, int alias_type)
 {
-    _print_member(lbuf, m->name, m->type, m->negated, separator, alias_type);
+    print_member_int(lbuf, m->name, m->type, m->negated, separator, alias_type);
 }
index 2be1e2743a77969d538884285e11c5a8c87189da..df3440e68b78c3cdfdcdf7d082d1d5cd23a5d08d 100644 (file)
@@ -15,8 +15,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDOERS_PARSE_H
-#define _SUDOERS_PARSE_H
+#ifndef SUDOERS_PARSE_H
+#define SUDOERS_PARSE_H
 
 #undef UNSPEC
 #define UNSPEC -1
@@ -223,4 +223,4 @@ int hexchar(const char *s);
 /* base64.c */
 size_t base64_decode(const char *str, unsigned char *dst, size_t dsize);
 
-#endif /* _SUDOERS_PARSE_H */
+#endif /* SUDOERS_PARSE_H */
index 695d63db1599f84839f2a49435e75f9648831f4f..9b5dabd57da0bae41b3d5a8f0c6984fe5630d308 100644 (file)
@@ -14,8 +14,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDOERS_PWUTIL_H
-#define _SUDOERS_PWUTIL_H
+#ifndef SUDOERS_PWUTIL_H
+#define SUDOERS_PWUTIL_H
 
 #define ptr_to_item(p) ((struct cache_item *)((char *)p - offsetof(struct cache_item_##p, p)))
 
@@ -62,4 +62,4 @@ struct cache_item *sudo_make_gritem(gid_t gid, const char *group);
 struct cache_item *sudo_make_grlist_item(const struct passwd *pw, char * const *groups, char * const *gids);
 struct cache_item *sudo_make_pwitem(uid_t uid, const char *user);
 
-#endif /* _SUDOERS_PWUTIL_H */
+#endif /* SUDOERS_PWUTIL_H */
index 96a1165be225b6853028e27f4ef6281091c2dc77..28b62a497d3be39061ca661ba1ab9a7073aefef1 100644 (file)
@@ -60,7 +60,7 @@
 static void rbrepair(struct rbtree *, struct rbnode *);
 static void rotate_left(struct rbtree *, struct rbnode *);
 static void rotate_right(struct rbtree *, struct rbnode *);
-static void _rbdestroy(struct rbtree *, struct rbnode *, void (*)(void *));
+static void rbdestroy_int(struct rbtree *, struct rbnode *, void (*)(void *));
 
 /*
  * Red-Black tree, see http://en.wikipedia.org/wiki/Red-black_tree
@@ -333,12 +333,12 @@ rbsuccessor(struct rbtree *tree, struct rbnode *node)
  * Recursive portion of rbdestroy().
  */
 static void
-_rbdestroy(struct rbtree *tree, struct rbnode *node, void (*destroy)(void *))
+rbdestroy_int(struct rbtree *tree, struct rbnode *node, void (*destroy)(void *))
 {
-    debug_decl(_rbdestroy, SUDOERS_DEBUG_RBTREE)
+    debug_decl(rbdestroy_int, SUDOERS_DEBUG_RBTREE)
     if (node != rbnil(tree)) {
-       _rbdestroy(tree, node->left, destroy);
-       _rbdestroy(tree, node->right, destroy);
+       rbdestroy_int(tree, node->left, destroy);
+       rbdestroy_int(tree, node->right, destroy);
        if (destroy != NULL)
            destroy(node->data);
        sudo_efree(node);
@@ -354,7 +354,7 @@ void
 rbdestroy(struct rbtree *tree, void (*destroy)(void *))
 {
     debug_decl(rbdestroy, SUDOERS_DEBUG_RBTREE)
-    _rbdestroy(tree, rbfirst(tree), destroy);
+    rbdestroy_int(tree, rbfirst(tree), destroy);
     sudo_efree(tree);
     debug_return;
 }
index 86cc3c9e3161b024b8de297994b75f93a33472c1..cc2103cb8693ca89a43a5e0b2af99c7761f58ce7 100644 (file)
@@ -15,8 +15,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDOERS_REDBLACK_H
-#define _SUDOERS_REDBLACK_H
+#ifndef SUDOERS_REDBLACK_H
+#define SUDOERS_REDBLACK_H
 
 enum rbcolor {
     red,
@@ -55,4 +55,4 @@ struct rbnode *rbinsert(struct rbtree *, void *);
 struct rbtree *rbcreate(int (*)(const void *, const void *));
 void rbdestroy(struct rbtree *, void (*)(void *));
 
-#endif /* _SUDOERS_REDBLACK_H */
+#endif /* SUDOERS_REDBLACK_H */
index a6b17a9ae8336dbf0e12a916c90cf0f7a5d380ed..78c7f5aea6145978f8c4ab209a343f9270989eae 100644 (file)
@@ -41,7 +41,7 @@
 
 #define SUDO_ERROR_WRAP 0
 
-#define _SUDO_MAIN
+#define SUDO_MAIN
 #include "sudoers.h"
 #include "def_data.c"
 
index ed19f4e6206d4ed95b6f68082b010f5bc6c44f34..36a124508784eb439148a21f916d4b5f82254113 100644 (file)
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDOERS_SOLARIS_AUDIT_H
-#define        _SUDOERS_SOLARIS_AUDIT_H
+#ifndef SUDOERS_SOLARIS_AUDIT_H
+#define        SUDOERS_SOLARIS_AUDIT_H
 
 int    solaris_audit_success(int argc, char *argv[]);
 int    solaris_audit_failure(int argc, char *argv[], char const *const fmt, va_list);
 
-#endif /* _SUDOERS_SOLARIS_AUDIT_H */
+#endif /* SUDOERS_SOLARIS_AUDIT_H */
index eeaa3d0690b58913d2a784b6e61586cd91657b97..3f8b0b6b098a54fb30c3b463e97ea6702908b917 100644 (file)
@@ -159,11 +159,11 @@ sudo_sss_rulecpy(struct sss_sudo_rule *dst, const struct sss_sudo_rule *src)
      debug_return;
 }
 
-#define _SUDO_SSS_FILTER_INCLUDE 0
-#define _SUDO_SSS_FILTER_EXCLUDE 1
+#define SUDO_SSS_FILTER_INCLUDE 0
+#define SUDO_SSS_FILTER_EXCLUDE 1
 
-#define _SUDO_SSS_STATE_HOSTMATCH 0x01
-#define _SUDO_SSS_STATE_USERMATCH 0x02
+#define SUDO_SSS_STATE_HOSTMATCH 0x01
+#define SUDO_SSS_STATE_USERMATCH 0x02
 
 static struct sss_sudo_result *
 sudo_sss_filter_result(struct sudo_sss_handle *handle,
@@ -178,7 +178,7 @@ sudo_sss_filter_result(struct sudo_sss_handle *handle,
 
     sudo_debug_printf(SUDO_DEBUG_DEBUG, "in_res=%p, count=%u, act=%s",
        in_res, in_res ? in_res->num_rules : 0,
-       act == _SUDO_SSS_FILTER_EXCLUDE ? "EXCLUDE" : "INCLUDE");
+       act == SUDO_SSS_FILTER_EXCLUDE ? "EXCLUDE" : "INCLUDE");
 
     if (in_res == NULL)
        debug_return_ptr(NULL);
@@ -193,11 +193,11 @@ sudo_sss_filter_result(struct sudo_sss_handle *handle,
     for (i = l = 0; i < in_res->num_rules; ++i) {
         r = filterp(handle, in_res->rules + i, filterp_arg);
 
-        if (( r && act == _SUDO_SSS_FILTER_INCLUDE) ||
-            (!r && act == _SUDO_SSS_FILTER_EXCLUDE)) {
+        if (( r && act == SUDO_SSS_FILTER_INCLUDE) ||
+            (!r && act == SUDO_SSS_FILTER_EXCLUDE)) {
            sudo_debug_printf(SUDO_DEBUG_DEBUG,
                "COPY (%s): %p[%u] => %p[%u] (= %p)",
-               act == _SUDO_SSS_FILTER_EXCLUDE ? "not excluded" : "included",
+               act == SUDO_SSS_FILTER_EXCLUDE ? "not excluded" : "included",
                in_res->rules, i, out_res->rules, l, in_res->rules + i);
 
            sudo_sss_rulecpy(out_res->rules + l, in_res->rules + i);
@@ -683,7 +683,7 @@ sudo_sss_result_get(struct sudo_nss *nss, struct passwd *pw, uint32_t *state)
            if (u_sss_result != NULL) {
                if (state != NULL) {
                    sudo_debug_printf(SUDO_DEBUG_DEBUG, "state |= USERMATCH");
-                   *state |= _SUDO_SSS_STATE_USERMATCH;
+                   *state |= SUDO_SSS_STATE_USERMATCH;
                }
                sudo_debug_printf(SUDO_DEBUG_INFO, "Received %u rule(s)",
                    u_sss_result->num_rules);
@@ -707,13 +707,13 @@ sudo_sss_result_get(struct sudo_nss *nss, struct passwd *pw, uint32_t *state)
     }
 
     f_sss_result = sudo_sss_filter_result(handle, u_sss_result,
-       sudo_sss_result_filterp, _SUDO_SSS_FILTER_INCLUDE, NULL);
+       sudo_sss_result_filterp, SUDO_SSS_FILTER_INCLUDE, NULL);
 
     if (f_sss_result != NULL) {
        if (f_sss_result->num_rules > 0) {
            if (state != NULL) {
                sudo_debug_printf(SUDO_DEBUG_DEBUG, "state |= HOSTMATCH");
-               *state |= _SUDO_SSS_STATE_HOSTMATCH;
+               *state |= SUDO_SSS_STATE_HOSTMATCH;
            }
        }
        sudo_debug_printf(SUDO_DEBUG_DEBUG,
@@ -1086,9 +1086,9 @@ done:
            SET(ret, FLAG_NO_CHECK);
     }
 
-    if (state & _SUDO_SSS_STATE_USERMATCH)
+    if (state & SUDO_SSS_STATE_USERMATCH)
        CLR(ret, FLAG_NO_USER);
-    if (state & _SUDO_SSS_STATE_HOSTMATCH)
+    if (state & SUDO_SSS_STATE_HOSTMATCH)
        CLR(ret, FLAG_NO_HOST);
 
     sudo_debug_printf(SUDO_DEBUG_DEBUG, "sudo_sss_lookup(%d)=0x%02x",
index 5d6aa44ec34409bcb64e3f2dcd54043fab961d9a..b67a6c9ca563688014b54211a082b0b8129f6062 100644 (file)
@@ -14,8 +14,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDOERS_NSS_H
-#define _SUDOERS_NSS_H
+#ifndef SUDOERS_NSS_H
+#define SUDOERS_NSS_H
 
 struct sudo_lbuf;
 struct passwd;
@@ -40,4 +40,4 @@ TAILQ_HEAD(sudo_nss_list, sudo_nss);
 
 struct sudo_nss_list *sudo_read_nss(void);
 
-#endif /* _SUDOERS_NSS_H */
+#endif /* SUDOERS_NSS_H */
index 474e0e2a4723d610893a910bab1d6696b90ecf28..0a23b234b17a6ef120adc0b7c20526ac2bc8c8b7 100644 (file)
@@ -34,7 +34,7 @@
 #include "sudo_debug.h"
 
 static int
-_sudo_printf(int msg_type, const char *fmt, ...)
+sudo_printf_int(int msg_type, const char *fmt, ...)
 {
     va_list ap;
     int len;
@@ -59,4 +59,4 @@ _sudo_printf(int msg_type, const char *fmt, ...)
     return len;
 }
 
-sudo_printf_t sudo_printf = _sudo_printf;
+sudo_printf_t sudo_printf = sudo_printf_int;
index 00d5ac3845405ae5e9d1b4b256b593bb1080fae5..0c2e5aeae327ba841ed666e17fa5f1f85f974b97 100644 (file)
@@ -18,7 +18,7 @@
  * Materiel Command, USAF, under agreement number F39502-99-1-0512.
  */
 
-#define _SUDO_MAIN
+#define SUDO_MAIN
 
 #ifdef __TANDEM
 # include <floss.h>
index a8d22a0a7dd05250c854013b348fed55335d69bc..744ea3934a29ba3af1c09de2b05010d3fe0997aa 100644 (file)
@@ -19,8 +19,8 @@
  * Materiel Command, USAF, under agreement number F39502-99-1-0512.
  */
 
-#ifndef _SUDOERS_SUDOERS_H
-#define _SUDOERS_SUDOERS_H
+#ifndef SUDOERS_SUDOERS_H
+#define SUDOERS_SUDOERS_H
 
 #include <limits.h>
 #ifdef HAVE_STDBOOL_H
@@ -362,7 +362,7 @@ void group_plugin_unload(void);
 int group_plugin_query(const char *user, const char *group,
     const struct passwd *pwd);
 
-#ifndef _SUDO_MAIN
+#ifndef SUDO_MAIN
 extern struct sudo_user sudo_user;
 extern struct passwd *list_pw;
 extern int long_list;
@@ -372,4 +372,4 @@ extern sudo_conv_t sudo_conv;
 extern sudo_printf_t sudo_printf;
 #endif
 
-#endif /* _SUDOERS_SUDOERS_H */
+#endif /* SUDOERS_SUDOERS_H */
index 4c3ac5bc77ed19df6bd84b2cb95e1d31131a4992..3cf5f42ee1902e825999d1e107eb33894387759a 100644 (file)
@@ -14,8 +14,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDOERS_DEBUG_H
-#define _SUDOERS_DEBUG_H
+#ifndef SUDOERS_DEBUG_H
+#define SUDOERS_DEBUG_H
 
 #include "sudo_debug.h"
 
@@ -43,4 +43,4 @@ extern unsigned int sudoers_subsystem_ids[];
 #define SUDOERS_DEBUG_SSSD     (sudoers_subsystem_ids[16]) /* sudoers SSSD */
 #define SUDOERS_DEBUG_UTIL     (sudoers_subsystem_ids[17]) /* utility functions */
 
-#endif /* _SUDOERS_DEBUG_H */
+#endif /* SUDOERS_DEBUG_H */
index 84f9c5ebc3fa9af20b59ecfc49a1434a1e4cb8af..57fe1df20f3e2e14f7b0c441515b1117c0085382 100644 (file)
@@ -65,9 +65,9 @@
  * 44  sudo 1.8.13, added MAIL/NOMAIL tags.
 */
 
-#ifndef _SUDOERS_VERSION_H
-#define        _SUDOERS_VERSION_H
+#ifndef SUDOERS_VERSION_H
+#define        SUDOERS_VERSION_H
 
 #define SUDOERS_GRAMMAR_VERSION        44
 
-#endif /* _SUDOERS_VERSION_H */
+#endif /* SUDOERS_VERSION_H */
index 482c24a90570ffb8bc8d4af9ea1104e53831217b..72b2d2b5a01b6f8539dc201159ab7a64a1a0f56c 100644 (file)
@@ -21,7 +21,7 @@
  * Materiel Command, USAF, under agreement number F39502-99-1-0512.
  */
 
-#define _SUDO_MAIN
+#define SUDO_MAIN
 
 #include <config.h>
 
index a5115a1adc98ff1b6fd8bc44cff0962873ed3e41..184b4c986e9c16e2e4a2353c516955819dd9eee1 100644 (file)
@@ -2031,7 +2031,7 @@ static bool continued, sawspace;
 static int prev_state;
 static int digest_len;
 
-static bool _push_include(char *, bool);
+static bool push_include_int(char *, bool);
 static bool pop_include(void);
 static char *parse_include(char *);
 
@@ -2044,8 +2044,8 @@ int (*trace_print)(const char *msg) = sudoers_trace_print;
 
 #define ECHO   ignore_result(fwrite(sudoerstext, sudoersleng, 1, sudoersout))
 
-#define        push_include(_p)        (_push_include((_p), false))
-#define        push_includedir(_p)     (_push_include((_p), true))
+#define        push_include(_p)        (push_include_int((_p), false))
+#define        push_includedir(_p)     (push_include_int((_p), true))
 #define YY_NO_INPUT 1
 #define YY_NO_UNPUT 1
 #define GOTDEFS 1
@@ -4182,11 +4182,11 @@ init_lexer(void)
 }
 
 static bool
-_push_include(char *path, bool isdir)
+push_include_int(char *path, bool isdir)
 {
     struct path_list *pl;
     FILE *fp;
-    debug_decl(_push_include, SUDOERS_DEBUG_PARSER)
+    debug_decl(push_include_int, SUDOERS_DEBUG_PARSER)
 
     /* push current state onto stack */
     if (idepth >= istacksize) {
index 002f8fbd6d7feef7b7b22b9e509f5846654d1e5f..0a870e6df39301f552d22f19f66800887ea243d7 100644 (file)
@@ -14,8 +14,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDOERS_TOKE_H
-#define _SUDOERS_TOKE_H
+#ifndef SUDOERS_TOKE_H
+#define SUDOERS_TOKE_H
 
 bool append(const char *, int);
 bool fill_args(const char *, int, int);
@@ -39,4 +39,4 @@ extern int (*trace_print)(const char *msg);
        (*trace_print)(msg);                                            \
 } while (0);
 
-#endif /* _SUDOERS_TOKE_H */
+#endif /* SUDOERS_TOKE_H */
index 81829de992570bb97e9083f4c531e73e8f83c26c..8887d3a4f29554297a3526f9a4d3b30fb04fdaa0 100644 (file)
@@ -97,7 +97,7 @@ static bool continued, sawspace;
 static int prev_state;
 static int digest_len;
 
-static bool _push_include(char *, bool);
+static bool push_include_int(char *, bool);
 static bool pop_include(void);
 static char *parse_include(char *);
 
@@ -110,8 +110,8 @@ int (*trace_print)(const char *msg) = sudoers_trace_print;
 
 #define ECHO   ignore_result(fwrite(sudoerstext, sudoersleng, 1, sudoersout))
 
-#define        push_include(_p)        (_push_include((_p), false))
-#define        push_includedir(_p)     (_push_include((_p), true))
+#define        push_include(_p)        (push_include_int((_p), false))
+#define        push_includedir(_p)     (push_include_int((_p), true))
 %}
 
 HEX16                  [0-9A-Fa-f]{1,4}
@@ -911,11 +911,11 @@ init_lexer(void)
 }
 
 static bool
-_push_include(char *path, bool isdir)
+push_include_int(char *path, bool isdir)
 {
     struct path_list *pl;
     FILE *fp;
-    debug_decl(_push_include, SUDOERS_DEBUG_PARSER)
+    debug_decl(push_include_int, SUDOERS_DEBUG_PARSER)
 
     /* push current state onto stack */
     if (idepth >= istacksize) {
index 2502bfe3642c084e81badc42e8210cc9b6434c56..ac651d0c3138e46849cebe2a066117ebfa2d92be 100644 (file)
@@ -23,7 +23,7 @@
  * Lock the sudoers file for safe editing (ala vipw) and check for parse errors.
  */
 
-#define _SUDO_MAIN
+#define SUDO_MAIN
 
 #ifdef __TANDEM
 # include <floss.h>
index 3ee7d0069ed3734ba73892e959aef8f68012b7c3..900b99e889497954a697fad4f119ad9ccc0d8b30 100644 (file)
@@ -84,7 +84,7 @@ struct rtentry;
 # include <ifaddrs.h>
 #endif
 
-#define _SUDO_NET_IFS_C                /* to expose sudo_inet_ntop in sudo_compat.h */
+#define SUDO_NET_IFS_C         /* to expose sudo_inet_ntop in sudo_compat.h */
 
 #define DEFAULT_TEXT_DOMAIN    "sudo"
 #include "sudo_gettext.h"      /* must be included before sudo_compat.h */
index 5d8ef53b55bf07b3cde6ba5e3ae1706c6ee41c2b..5da138ab16ba68f7d00a57a7804bb12180508533 100644 (file)
@@ -19,8 +19,8 @@
  * Materiel Command, USAF, under agreement number F39502-99-1-0512.
  */
 
-#ifndef _SUDO_SUDO_H
-#define _SUDO_SUDO_H
+#ifndef SUDO_SUDO_H
+#define SUDO_SUDO_H
 
 #include <limits.h>
 #include <pathnames.h>
@@ -261,4 +261,4 @@ int add_preserved_fd(struct preserved_fd_list *pfds, int fd);
 void closefrom_except(int startfd, struct preserved_fd_list *pfds);
 void parse_preserved_fds(struct preserved_fd_list *pfds, const char *fdstr);
 
-#endif /* _SUDO_SUDO_H */
+#endif /* SUDO_SUDO_H */
index 768a06bd42a1669aff8d2f0de8882eb62cad5ead..5caea05a9e411655f3837b830a4dd7e3aeb41106 100644 (file)
@@ -14,8 +14,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDO_EXEC_H
-#define _SUDO_EXEC_H
+#ifndef SUDO_EXEC_H
+#define SUDO_EXEC_H
 
 /*
  * Older systems may not support MSG_WAITALL but it shouldn't really be needed.
@@ -99,4 +99,4 @@ bool utmp_login(const char *from_line, const char *to_line, int ttyfd,
     const char *user);
 bool utmp_logout(const char *line, int status);
 
-#endif /* _SUDO_EXEC_H */
+#endif /* SUDO_EXEC_H */
index 1cbd673838feb5ce87420892819d10ea01c3de2e..ea2199826ac72a635936437c47046ededfd88563 100644 (file)
@@ -14,8 +14,8 @@
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
 
-#ifndef _SUDO_PLUGIN_INT_H
-#define _SUDO_PLUGIN_INT_H
+#ifndef SUDO_PLUGIN_INT_H
+#define SUDO_PLUGIN_INT_H
 
 /*
  * All plugin structures start with a type and a version.
@@ -109,4 +109,4 @@ int sudo_conversation_printf(int msg_type, const char *fmt, ...);
 bool sudo_load_plugins(struct plugin_container *policy_plugin,
     struct plugin_container_list *io_plugins);
 
-#endif /* _SUDO_PLUGIN_INT_H */
+#endif /* SUDO_PLUGIN_INT_H */
index 1b0bb0c8d2d6d9648b6b3108c223d1b6eaaabd3c..afd0f05b557e618665246adbe92dc976222d6657 100644 (file)
@@ -16,8 +16,8 @@
  * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  */
 
-#ifndef _SUDO_USAGE_H
-#define _SUDO_USAGE_H
+#ifndef SUDO_USAGE_H
+#define SUDO_USAGE_H
 
 /*
  * Usage strings for sudo.  These are here because we
@@ -34,4 +34,4 @@
  */
 #define CONFIGURE_ARGS "@CONFIGURE_ARGS@"
 
-#endif /* _SUDO_USAGE_H */
+#endif /* SUDO_USAGE_H */