From 6ce6b8b3d9ad6263848d6003b66c0a8f9bd80c4d Mon Sep 17 00:00:00 2001 From: Tobias Klauser Date: Sun, 12 May 2013 12:23:06 +0200 Subject: dissector: ip_authentication_hdr: Remove trailing whitespaces Remove two trailing whitespaces on emtpy lines. Signed-off-by: Tobias Klauser --- proto_ip_authentication_hdr.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'proto_ip_authentication_hdr.c') diff --git a/proto_ip_authentication_hdr.c b/proto_ip_authentication_hdr.c index 2d5f57c..6640918 100644 --- a/proto_ip_authentication_hdr.c +++ b/proto_ip_authentication_hdr.c @@ -33,7 +33,7 @@ static void auth_hdr(struct pkt_buff *pkt) auth_ops = (struct auth_hdr *) pkt_pull(pkt, sizeof(*auth_ops)); if (auth_ops == NULL) return; - + hdr_len = (auth_ops->h_payload_len * 4) + 8; tprintf(" [ Authentication Header "); @@ -69,7 +69,7 @@ static void auth_hdr_less(struct pkt_buff *pkt) auth_ops = (struct auth_hdr *) pkt_pull(pkt, sizeof(*auth_ops)); if (auth_ops == NULL) return; - + hdr_len = (auth_ops->h_payload_len * 4) + 8; if (hdr_len > pkt_len(pkt) || hdr_len < 0) return; -- cgit v1.2.3-54-g00ecf