diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-02-26 17:12:59 +0100 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-02-26 17:12:59 +0100 |
commit | a3606a74c672ef6471c006d15262dbb8ea60d025 (patch) | |
tree | 5f8da24901f5ca218978e5d2eda4acc037f9900b /proto-static.c | |
parent | 285039a8783654439d9c0e29aac16e3893e2444b (diff) |
proto: add an option for specifying external addresses using proto_apply_ip_settings()
Diffstat (limited to 'proto-static.c')
-rw-r--r-- | proto-static.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/proto-static.c b/proto-static.c index 4ee4793..be68e8e 100644 --- a/proto-static.c +++ b/proto-static.c @@ -20,7 +20,7 @@ struct static_proto_state { static bool static_proto_setup(struct static_proto_state *state) { - return proto_apply_ip_settings(state->proto.iface, state->config) == 0; + return proto_apply_ip_settings(state->proto.iface, state->config, false) == 0; } static int |