[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <200703200014.l2K0ExTL015802@faith.austin.ibm.com>
Date: Mon, 19 Mar 2007 18:14:59 -0600
From: Joy Latten <latten@...tin.ibm.com>
To: netdev@...r.kernel.org
Cc: davem@...emloft.net, eparis@...hat.com, redhat-lspp@...hat.com
Subject: [PATCH]: ipsecv6 needs a space when printing audit record.
This patch adds a space between printing of the src and dst ipv6 addresses.
Otherwise, audit or other test tools may fail to process the audit
record properly because they cannot find the dst address.
Please let me know if this patch is ok. It is minor fix, but I have
tested it and printing ipsecv6 audit record is much better.
Regards,
Joy
Signed-off-by: Joy Latten <latten@...tin.ibm.com>
Patch is against linux-2.6.20-rc4.
diff -urpN linux-2.6.20.orig/net/xfrm/xfrm_policy.c linux-2.6.20.patch/net/xfrm/xfrm_policy.c
--- linux-2.6.20.orig/net/xfrm/xfrm_policy.c 2007-03-16 17:21:27.000000000 -0500
+++ linux-2.6.20.patch/net/xfrm/xfrm_policy.c 2007-03-19 18:39:09.000000000 -0500
@@ -2089,7 +2089,7 @@ void xfrm_audit_log(uid_t auid, u32 sid,
sizeof(struct in6_addr));
}
audit_log_format(audit_buf,
- " src=" NIP6_FMT "dst=" NIP6_FMT,
+ " src=" NIP6_FMT " dst=" NIP6_FMT,
NIP6(saddr6), NIP6(daddr6));
}
break;
-
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