diff options
author | Tobias Brunner <tobias@strongswan.org> | 2012-11-02 15:39:51 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2012-11-02 15:39:51 +0100 |
commit | 531f32d62a9bed5415d4e70f0ad71e57b8f663a5 (patch) | |
tree | 1451b8a82ccfe91530c7168a3caf7d7f11fccd72 /src/libcharon/plugins/unity | |
parent | 8128f255f403b8858d40cda749338b593f7302d1 (diff) | |
download | strongswan-531f32d62a9bed5415d4e70f0ad71e57b8f663a5.tar.bz2 strongswan-531f32d62a9bed5415d4e70f0ad71e57b8f663a5.tar.xz |
Compiler warning fixed
Diffstat (limited to 'src/libcharon/plugins/unity')
-rw-r--r-- | src/libcharon/plugins/unity/unity_handler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcharon/plugins/unity/unity_handler.c b/src/libcharon/plugins/unity/unity_handler.c index 446f51293..b8d571dde 100644 --- a/src/libcharon/plugins/unity/unity_handler.c +++ b/src/libcharon/plugins/unity/unity_handler.c @@ -170,7 +170,7 @@ static job_requeue_t add_exclude_async(entry_t *entry) { enumerator_t *enumerator; child_cfg_t *child_cfg; - lifetime_cfg_t lft = {}; + lifetime_cfg_t lft = { .time = { .life = 0 } }; ike_sa_t *ike_sa; char name[128]; host_t *host; |