summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2009-11-23 15:58:24 +0000
committerChristian Pointner <equinox@anytun.org>2009-11-23 15:58:24 +0000
commit5b9b5570ff118f8ec13032a49ec1b834b8a50f65 (patch)
treec7ba681601e86c58991b287843ac39b377e58d6e
parentupdated changelog (diff)
fixed typo at include guards
-rw-r--r--src/cipher.h4
-rw-r--r--src/daemon.h4
-rw-r--r--src/datatypes.h4
-rw-r--r--src/encrypted_packet.h4
-rw-r--r--src/key_derivation.h4
-rw-r--r--src/log.h4
-rw-r--r--src/log_targets.h4
-rw-r--r--src/options.h4
-rw-r--r--src/plain_packet.h4
-rw-r--r--src/seq_window.h4
-rw-r--r--src/sig_handler.h4
-rw-r--r--src/string_list.h4
-rw-r--r--src/sysexec.h4
-rw-r--r--src/tun.h4
-rw-r--r--src/tun_helper.h4
-rw-r--r--src/udp.h4
16 files changed, 32 insertions, 32 deletions
diff --git a/src/cipher.h b/src/cipher.h
index 5ccbd5b..d65c761 100644
--- a/src/cipher.h
+++ b/src/cipher.h
@@ -33,8 +33,8 @@
* along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef UANYUTN_cipher_h_INCLUDED
-#define UANYUTN_cipher_h_INCLUDED
+#ifndef UANYTUN_cipher_h_INCLUDED
+#define UANYTUN_cipher_h_INCLUDED
#ifndef NO_CRYPT
#ifndef USE_SSL_CRYPTO
diff --git a/src/daemon.h b/src/daemon.h
index 599ecec..22e0ac0 100644
--- a/src/daemon.h
+++ b/src/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/src/datatypes.h b/src/datatypes.h
index 8c6bfff..ae57112 100644
--- a/src/datatypes.h
+++ b/src/datatypes.h
@@ -33,8 +33,8 @@
* along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef UANYUTN_datatypes_h_INCLUDED
-#define UANYUTN_datatypes_h_INCLUDED
+#ifndef UANYTUN_datatypes_h_INCLUDED
+#define UANYTUN_datatypes_h_INCLUDED
#include <stdint.h>
#include <arpa/inet.h>
diff --git a/src/encrypted_packet.h b/src/encrypted_packet.h
index 245f75a..f654b2c 100644
--- a/src/encrypted_packet.h
+++ b/src/encrypted_packet.h
@@ -33,8 +33,8 @@
* along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef UANYUTN_encrypted_packet_h_INCLUDED
-#define UANYUTN_encrypted_packet_h_INCLUDED
+#ifndef UANYTUN_encrypted_packet_h_INCLUDED
+#define UANYTUN_encrypted_packet_h_INCLUDED
#define ENCRYPTED_PACKET_SIZE_MAX 1600
diff --git a/src/key_derivation.h b/src/key_derivation.h
index b11982e..7f75685 100644
--- a/src/key_derivation.h
+++ b/src/key_derivation.h
@@ -33,8 +33,8 @@
* along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef UANYUTN_key_derivation_h_INCLUDED
-#define UANYUTN_key_derivation_h_INCLUDED
+#ifndef UANYTUN_key_derivation_h_INCLUDED
+#define UANYTUN_key_derivation_h_INCLUDED
#ifndef USE_SSL_CRYPTO
#include <gcrypt.h>
diff --git a/src/log.h b/src/log.h
index 513f506..2717622 100644
--- a/src/log.h
+++ b/src/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/src/log_targets.h b/src/log_targets.h
index 563d04c..8db3812 100644
--- a/src/log_targets.h
+++ b/src/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/src/options.h b/src/options.h
index c37c4d5..ee7763d 100644
--- a/src/options.h
+++ b/src/options.h
@@ -33,8 +33,8 @@
* along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef UANYUTN_options_h_INCLUDED
-#define UANYUTN_options_h_INCLUDED
+#ifndef UANYTUN_options_h_INCLUDED
+#define UANYTUN_options_h_INCLUDED
#include "string_list.h"
diff --git a/src/plain_packet.h b/src/plain_packet.h
index 94a20c1..6f1b385 100644
--- a/src/plain_packet.h
+++ b/src/plain_packet.h
@@ -33,8 +33,8 @@
* along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef UANYUTN_plain_packet_h_INCLUDED
-#define UANYUTN_plain_packet_h_INCLUDED
+#ifndef UANYTUN_plain_packet_h_INCLUDED
+#define UANYTUN_plain_packet_h_INCLUDED
#define PLAIN_PACKET_SIZE_MAX 1600
diff --git a/src/seq_window.h b/src/seq_window.h
index 65f7570..385cbdb 100644
--- a/src/seq_window.h
+++ b/src/seq_window.h
@@ -33,8 +33,8 @@
* along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef UANYUTN_seq_window_h_INCLUDED
-#define UANYUTN_seq_window_h_INCLUDED
+#ifndef UANYTUN_seq_window_h_INCLUDED
+#define UANYTUN_seq_window_h_INCLUDED
struct seq_win_element_struct {
sender_id_t sender_id_;
diff --git a/src/sig_handler.h b/src/sig_handler.h
index d88fed2..1995e1a 100644
--- a/src/sig_handler.h
+++ b/src/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/src/string_list.h b/src/string_list.h
index df5ca75..cd054cb 100644
--- a/src/string_list.h
+++ b/src/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/src/sysexec.h b/src/sysexec.h
index f81bb4c..0aabde1 100644
--- a/src/sysexec.h
+++ b/src/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[]);
diff --git a/src/tun.h b/src/tun.h
index 5489777..b74e0b1 100644
--- a/src/tun.h
+++ b/src/tun.h
@@ -33,8 +33,8 @@
* along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef UANYUTN_tun_h_INCLUDED
-#define UANYUTN_tun_h_INCLUDED
+#ifndef UANYTUN_tun_h_INCLUDED
+#define UANYTUN_tun_h_INCLUDED
#include <stdlib.h>
diff --git a/src/tun_helper.h b/src/tun_helper.h
index ff5f68f..bd9b438 100644
--- a/src/tun_helper.h
+++ b/src/tun_helper.h
@@ -33,8 +33,8 @@
* along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef UANYUTN_tun_helper_h_INCLUDED
-#define UANYUTN_tun_helper_h_INCLUDED
+#ifndef UANYTUN_tun_helper_h_INCLUDED
+#define UANYTUN_tun_helper_h_INCLUDED
#include <string.h>
#include <sys/socket.h>
diff --git a/src/udp.h b/src/udp.h
index e226abb..02a1c26 100644
--- a/src/udp.h
+++ b/src/udp.h
@@ -33,8 +33,8 @@
* along with uAnytun. If not, see <http://www.gnu.org/licenses/>.
*/
-#ifndef UANYUTN_udp_h_INCLUDED
-#define UANYUTN_udp_h_INCLUDED
+#ifndef UANYTUN_udp_h_INCLUDED
+#define UANYTUN_udp_h_INCLUDED
#include "options.h"