diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2013-05-12 12:23:06 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2013-05-12 12:31:03 +0200 |
commit | 6ce6b8b3d9ad6263848d6003b66c0a8f9bd80c4d (patch) | |
tree | 94864915b9e048d948d826aa8f1f3ddbfc1a94b7 | |
parent | 255698e00c6200be70b6e72eec76c154249ac581 (diff) |
dissector: ip_authentication_hdr: Remove trailing whitespaces
Remove two trailing whitespaces on emtpy lines.
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
-rw-r--r-- | proto_ip_authentication_hdr.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |