diff options
Diffstat (limited to 'net/ipv4/ip_masq_quake.c')
-rw-r--r-- | net/ipv4/ip_masq_quake.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/ipv4/ip_masq_quake.c b/net/ipv4/ip_masq_quake.c index 165dd6bd5..17b11a799 100644 --- a/net/ipv4/ip_masq_quake.c +++ b/net/ipv4/ip_masq_quake.c @@ -12,6 +12,7 @@ * http://www.gamers.org/dEngine/quake/spec/ * Harald Hoyer : Check for QUAKE-STRING * Juan Jose Ciarlante : litl bits for 2.1 + * Horst von Brand : Add #include <linux/string.h> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License @@ -24,6 +25,7 @@ #include <linux/module.h> #include <asm/system.h> #include <linux/types.h> +#include <linux/string.h> #include <linux/kernel.h> #include <linux/skbuff.h> #include <linux/in.h> @@ -44,7 +46,7 @@ typedef struct struct quake_priv_data { /* Have we seen a client connect message */ - char cl_connect; + signed char cl_connect; }; static int |