summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@helsinki.at>2009-11-23 16:02:25 +0000
committerChristian Pointner <equinox@helsinki.at>2009-11-23 16:02:25 +0000
commitfa73e7ef3c956527331d9897c01ded8e8f40fd19 (patch)
tree8fe72a89f2ef75de975e15389b94a5b1f79e56f5
parentscript gets called now (diff)
fixed typo at include guards
-rw-r--r--daemon.h4
-rw-r--r--log.h4
-rw-r--r--log_targets.h4
-rw-r--r--sig_handler.h4
-rw-r--r--string_list.h4
-rw-r--r--sysexec.h4
6 files changed, 12 insertions, 12 deletions
diff --git a/daemon.h b/daemon.h
index 599ecec..22e0ac0 100644
--- a/daemon.h
+++ b/daemon.h
@@ -33,8 +33,8 @@
* along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef UANYUTN_daemon_h_INCLUDED
-#define UANYUTN_daemon_h_INCLUDED
+#ifndef UANYTUN_daemon_h_INCLUDED
+#define UANYTUN_daemon_h_INCLUDED
#include <poll.h>
#include <fcntl.h>
diff --git a/log.h b/log.h
index 513f506..2717622 100644
--- a/log.h
+++ b/log.h
@@ -33,8 +33,8 @@
* along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef UANYUTN_log_h_INCLUDED
-#define UANYUTN_log_h_INCLUDED
+#ifndef UANYTUN_log_h_INCLUDED
+#define UANYTUN_log_h_INCLUDED
#define MSG_LENGTH_MAX 150
diff --git a/log_targets.h b/log_targets.h
index 563d04c..8db3812 100644
--- a/log_targets.h
+++ b/log_targets.h
@@ -33,8 +33,8 @@
* along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef UANYUTN_log_targets_h_INCLUDED
-#define UANYUTN_log_targets_h_INCLUDED
+#ifndef UANYTUN_log_targets_h_INCLUDED
+#define UANYTUN_log_targets_h_INCLUDED
#include <time.h>
diff --git a/sig_handler.h b/sig_handler.h
index d88fed2..1995e1a 100644
--- a/sig_handler.h
+++ b/sig_handler.h
@@ -33,8 +33,8 @@
* along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef UANYUTN_sig_handler_h_INCLUDED
-#define UANYUTN_sig_handler_h_INCLUDED
+#ifndef UANYTUN_sig_handler_h_INCLUDED
+#define UANYTUN_sig_handler_h_INCLUDED
int signal_init();
int signal_handle();
diff --git a/string_list.h b/string_list.h
index df5ca75..cd054cb 100644
--- a/string_list.h
+++ b/string_list.h
@@ -33,8 +33,8 @@
* along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef UANYUTN_string_list_h_INCLUDED
-#define UANYUTN_string_list_h_INCLUDED
+#ifndef UANYTUN_string_list_h_INCLUDED
+#define UANYTUN_string_list_h_INCLUDED
struct string_list_element_struct {
char* string_;
diff --git a/sysexec.h b/sysexec.h
index f81bb4c..0aabde1 100644
--- a/sysexec.h
+++ b/sysexec.h
@@ -33,8 +33,8 @@
* along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef UANYUTN_sysexec_h_INCLUDED
-#define UANYUTN_sysexec_h_INCLUDED
+#ifndef UANYTUN_sysexec_h_INCLUDED
+#define UANYTUN_sysexec_h_INCLUDED
int uanytun_exec(const char* script, char* const argv[], char* const evp[]);