[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20071221134713.10228.50057.stgit@flek.lan>
Date: Fri, 21 Dec 2007 08:47:13 -0500
From: Paul Moore <paul.moore@...com>
To: netdev@...r.kernel.org
Subject: [PATCH] IPv4: Fix a typo in tcp_v4_do_calc_md5_hash() which prevents
compilation
It's spelled "unsigned".
Signed-off-by: Paul Moore <paul.moore@...com>
---
net/ipv4/tcp_ipv4.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/net/ipv4/tcp_ipv4.c b/net/ipv4/tcp_ipv4.c
index 9cb92b8..9aea88b 100644
--- a/net/ipv4/tcp_ipv4.c
+++ b/net/ipv4/tcp_ipv4.c
@@ -1020,7 +1020,7 @@ static int tcp_v4_parse_md5_keys(struct sock *sk, char __user *optval,
static int tcp_v4_do_calc_md5_hash(char *md5_hash, struct tcp_md5sig_key *key,
__be32 saddr, __be32 daddr,
struct tcphdr *th, int protocol,
- unsinged int tcplen)
+ unsigned int tcplen)
{
struct scatterlist sg[4];
__u16 data_len;
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists