diff options
author | Mikael Magnusson <mikma@users.sourceforge.net> | 2019-09-23 15:50:24 +0200 |
---|---|---|
committer | Mikael Magnusson <mikma@users.sourceforge.net> | 2020-05-08 18:52:55 +0200 |
commit | 410f1990d8f9bd16ac6bc9631f4c606f22605c81 (patch) | |
tree | 400a669fa35b3dd9e4690dbfae6c0f7a7230c6c1 | |
parent | 9eea92452f52ec600268d127dba20ce9392c2b77 (diff) |
Wireguard: Fix wg_channel_reconfigure signature
-rw-r--r-- | proto/wireguard/wireguard.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/proto/wireguard/wireguard.c b/proto/wireguard/wireguard.c index 992399c8..4f006d1e 100644 --- a/proto/wireguard/wireguard.c +++ b/proto/wireguard/wireguard.c @@ -1031,7 +1031,8 @@ wg_channel_init(struct channel *CH, struct channel_config *CHC) } static int -wg_channel_reconfigure(struct channel *CH, struct channel_config *CHC) +wg_channel_reconfigure(struct channel *CH, struct channel_config *CHC, + int *import_changed, int *export_changed) { /* Try to reconfigure instance, returns success */ log(L_TRACE "WG: wg_channel_reconfigure"); |