diff options
Diffstat (limited to 'net/ipv4/ah4.c')
-rw-r--r-- | net/ipv4/ah4.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ipv4/ah4.c b/net/ipv4/ah4.c index fd508b526014..e8f2617ecd47 100644 --- a/net/ipv4/ah4.c +++ b/net/ipv4/ah4.c | |||
@@ -77,7 +77,7 @@ static inline struct scatterlist *ah_req_sg(struct crypto_ahash *ahash, | |||
77 | 77 | ||
78 | static int ip_clear_mutable_options(const struct iphdr *iph, __be32 *daddr) | 78 | static int ip_clear_mutable_options(const struct iphdr *iph, __be32 *daddr) |
79 | { | 79 | { |
80 | unsigned char * optptr = (unsigned char*)(iph+1); | 80 | unsigned char *optptr = (unsigned char *)(iph+1); |
81 | int l = iph->ihl*4 - sizeof(struct iphdr); | 81 | int l = iph->ihl*4 - sizeof(struct iphdr); |
82 | int optlen; | 82 | int optlen; |
83 | 83 | ||
@@ -406,8 +406,8 @@ static void ah4_err(struct sk_buff *skb, u32 info) | |||
406 | ah->spi, IPPROTO_AH, AF_INET); | 406 | ah->spi, IPPROTO_AH, AF_INET); |
407 | if (!x) | 407 | if (!x) |
408 | return; | 408 | return; |
409 | printk(KERN_DEBUG "pmtu discovery on SA AH/%08x/%08x\n", | 409 | pr_debug("pmtu discovery on SA AH/%08x/%08x\n", |
410 | ntohl(ah->spi), ntohl(iph->daddr)); | 410 | ntohl(ah->spi), ntohl(iph->daddr)); |
411 | xfrm_state_put(x); | 411 | xfrm_state_put(x); |
412 | } | 412 | } |
413 | 413 | ||