From 678aab785009624e71f8cd63600710da1d57fd22 Mon Sep 17 00:00:00 2001 From: Andreas Steffen Date: Sun, 20 Dec 2009 20:01:18 +0100 Subject: [PATCH] this->type is set by traffic_selector_create() --- src/libstrongswan/selectors/traffic_selector.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/libstrongswan/selectors/traffic_selector.c b/src/libstrongswan/selectors/traffic_selector.c index 08bf98795..ef463e2a0 100644 --- a/src/libstrongswan/selectors/traffic_selector.c +++ b/src/libstrongswan/selectors/traffic_selector.c @@ -330,7 +330,6 @@ static traffic_selector_t *get_subset(private_traffic_selector_t *this, private_ /* we have a match in protocol, port, and address: return it... */ new_ts = traffic_selector_create(protocol, this->type, from_port, to_port); - new_ts->type = this->type; new_ts->dynamic = this->dynamic || other->dynamic; memcpy(new_ts->from, from, size); memcpy(new_ts->to, to, size); @@ -767,7 +766,6 @@ traffic_selector_t *traffic_selector_create_from_string( private_traffic_selector_t *this = traffic_selector_create(protocol, type, from_port, to_port); - this->type = type; switch (type) { case TS_IPV4_ADDR_RANGE: