Skip to content

Commit

Permalink
[XFRM]: Fix XFRMGRP_REPORT to use correct multicast group.
Browse files Browse the repository at this point in the history
XFRMGRP_REPORT uses 0x10 which is a group that belongs
to events. The correct value is 0x20.
We should really be using xfrm_nlgroups going forward; it was tempting
to delete the definition of XFRMGRP_REPORT but it would break at
least iproute2.

Signed-off-by: J Hadi Salim <hadi@cyberus.ca>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
J Hadi Salim authored and David S. Miller committed Dec 9, 2006
1 parent f049098 commit 93366c5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/linux/xfrm.h
Original file line number Diff line number Diff line change
Expand Up @@ -357,7 +357,7 @@ struct xfrm_user_report {
#define XFRMGRP_EXPIRE 2
#define XFRMGRP_SA 4
#define XFRMGRP_POLICY 8
#define XFRMGRP_REPORT 0x10
#define XFRMGRP_REPORT 0x20
#endif

enum xfrm_nlgroups {
Expand Down

0 comments on commit 93366c5

Please sign in to comment.