Fix: Tunnel creation does not work when the length of the hostname is odd. (revert...
[l2tpns.git] / l2tpns.h
index 56f8fa1..092c683 100644 (file)
--- a/l2tpns.h
+++ b/l2tpns.h
@@ -247,10 +247,7 @@ typedef struct controls            // control message
 {
        struct controls *next;  // next in queue
        uint16_t length;        // length
-       union {
-               uint8_t buf[MAXCONTROL];
-               uint16_t buf16[MAXCONTROL/2];
-       } __attribute__ ((__transparent_union__));
+       uint8_t buf[MAXCONTROL];
 }
 controlt;