diff options
author | Tobias Brunner <tobias@strongswan.org> | 2011-05-13 12:50:29 +0200 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2011-07-06 09:43:45 +0200 |
commit | 328f22e1d3a38aa087399899794ebb60f1f5610e (patch) | |
tree | b29d4b374bce20d1bef58ad5b2ab5d1dfe98c30a /src/pluto/kernel.c | |
parent | 0b6ff2a9fe52ebcbfab7d72b60a9af5d8712f4f5 (diff) | |
download | strongswan-328f22e1d3a38aa087399899794ebb60f1f5610e.tar.bz2 strongswan-328f22e1d3a38aa087399899794ebb60f1f5610e.tar.xz |
Add the reqid to kernel_ipsec_t.del_policy.
Diffstat (limited to 'src/pluto/kernel.c')
-rw-r--r-- | src/pluto/kernel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pluto/kernel.c b/src/pluto/kernel.c index 8bed1fcfc..c458b2dad 100644 --- a/src/pluto/kernel.c +++ b/src/pluto/kernel.c @@ -837,7 +837,7 @@ static bool raw_eroute(const ip_address *this_host, if (deleting || replacing) { hydra->kernel_interface->del_policy(hydra->kernel_interface, - ts_src, ts_dst, dir, mark, routed); + ts_src, ts_dst, dir, sa->reqid, mark, routed); } if (!deleting) @@ -853,7 +853,7 @@ static bool raw_eroute(const ip_address *this_host, if (deleting || replacing) { hydra->kernel_interface->del_policy(hydra->kernel_interface, - ts_src, ts_dst, dir, mark, routed); + ts_src, ts_dst, dir, sa->reqid, mark, routed); } if (!deleting && ok && |