aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6
diff options
context:
space:
mode:
authorPatrick McHardy <kaber@trash.net>2010-06-28 08:12:41 -0400
committerPatrick McHardy <kaber@trash.net>2010-06-28 08:12:41 -0400
commitcf377eb4aeded926375d4d0fe0b66ba95f0521e1 (patch)
tree010628b36c81d050f4189fb8e94f0cdec60dc3c0 /net/ipv6
parentd70a011dbbaa6335a19deb63ec3eb613f48faafd (diff)
netfilter: ipt_LOG/ip6t_LOG: remove comparison within loop
Remove the comparison within the loop to print the macheader by prepending the colon to all but the first printk. Based on suggestion by Jan Engelhardt <jengelh@medozas.de>. Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r--net/ipv6/netfilter/ip6t_LOG.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/net/ipv6/netfilter/ip6t_LOG.c b/net/ipv6/netfilter/ip6t_LOG.c
index af4ee11f206..4c7ddac7c62 100644
--- a/net/ipv6/netfilter/ip6t_LOG.c
+++ b/net/ipv6/netfilter/ip6t_LOG.c
@@ -414,9 +414,9 @@ ip6t_log_packet(u_int8_t pf,
414 p = NULL; 414 p = NULL;
415 415
416 if (p != NULL) { 416 if (p != NULL) {
417 for (i = 0; i < len; i++) 417 printk("%02x", *p++);
418 printk("%02x%s", p[i], 418 for (i = 1; i < len; i++)
419 i == len - 1 ? "" : ":"); 419 printk(":%02x", p[i]);
420 } 420 }
421 printk(" "); 421 printk(" ");
422 422