diff --git a/vpn-daemons/vpnc/src/nm-vpnc-service.c b/vpn-daemons/vpnc/src/nm-vpnc-service.c index 708b825ad4..162f499c09 100644 --- a/vpn-daemons/vpnc/src/nm-vpnc-service.c +++ b/vpn-daemons/vpnc/src/nm-vpnc-service.c @@ -484,17 +484,18 @@ typedef struct Option */ static gboolean nm_vpnc_config_options_validate (char **data_items, int num_items) { - Option allowed_opts[] = { { "IPSec gateway", OPT_TYPE_ADDRESS }, - { "IPSec ID", OPT_TYPE_ASCII }, - { "IPSec secret", OPT_TYPE_ASCII }, - { "Xauth username", OPT_TYPE_ASCII }, - { "UDP Encapsulate", OPT_TYPE_NONE }, + Option allowed_opts[] = { + { "IPSec gateway", OPT_TYPE_ADDRESS }, + { "IPSec ID", OPT_TYPE_ASCII }, + { "IPSec secret", OPT_TYPE_ASCII }, + { "Xauth username", OPT_TYPE_ASCII }, + { "UDP Encapsulate", OPT_TYPE_NONE }, { "UDP Encapsulation Port", OPT_TYPE_ASCII }, - { "Domain", OPT_TYPE_ASCII }, - { "IKE DH Group", OPT_TYPE_ASCII }, - { "Perfect Forward Secrecy", OPT_TYPE_ASCII }, - { "Application Version", OPT_TYPE_ASCII }, - { NULL, OPT_TYPE_UNKNOWN } }; + { "Domain", OPT_TYPE_ASCII }, + { "IKE DH Group", OPT_TYPE_ASCII }, + { "Perfect Forward Secrecy", OPT_TYPE_ASCII }, + { "Application Version", OPT_TYPE_ASCII }, + { NULL, OPT_TYPE_UNKNOWN } }; char ** item; unsigned int i;