]> granicus.if.org Git - sudo/commitdiff
Don't include syslog.h from logging.h, just include it in the two
authorTodd C. Miller <Todd.Miller@sudo.ws>
Fri, 8 Dec 2017 22:00:41 +0000 (15:00 -0700)
committerTodd C. Miller <Todd.Miller@sudo.ws>
Fri, 8 Dec 2017 22:00:41 +0000 (15:00 -0700)
.c files it is actually needed.

plugins/sudoers/defaults.c
plugins/sudoers/logging.c
plugins/sudoers/logging.h

index 275d4bbc7b0100863939d8704c77fce490a46fe2..77687a5231aeea9373cc4aff8734bffb13f962f5 100644 (file)
@@ -34,6 +34,7 @@
 #include <unistd.h>
 #include <pwd.h>
 #include <ctype.h>
+#include <syslog.h>
 
 #include "sudoers.h"
 #include "parse.h"
index 2aee016be48fe5c86c38251d9107e6c9c0c088cc..31298658aaf795fbe99777f11aac2e764e91e30b 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1994-1996, 1998-2016 Todd C. Miller <Todd.Miller@sudo.ws>
+ * Copyright (c) 1994-1996, 1998-2017 Todd C. Miller <Todd.Miller@sudo.ws>
  *
  * Permission to use, copy, modify, and distribute this software for any
  * purpose with or without fee is hereby granted, provided that the above
@@ -47,6 +47,7 @@
 #include <ctype.h>
 #include <errno.h>
 #include <fcntl.h>
+#include <syslog.h>
 
 #include "sudoers.h"
 
index 6a72b3ef7f0c85a768cc4d6661b361efb22d55c8..08202b333697d53dae98c841921cbcd97a8b853c 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 1999-2005, 2009-2014
+ * Copyright (c) 1999-2005, 2009-2017
  *     Todd C. Miller <Todd.Miller@sudo.ws>
  *
  * Permission to use, copy, modify, and distribute this software for any
@@ -18,7 +18,6 @@
 #ifndef SUDOERS_LOGGING_H
 #define SUDOERS_LOGGING_H
 
-#include <syslog.h>
 #ifdef __STDC__
 # include <stdarg.h>
 #else