summaryrefslogtreecommitdiff
path: root/openvpn/src/openvpn/options.c
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2012-07-21 16:29:00 +0200
committerArne Schwabe <arne@rfc2549.org>2012-07-21 16:29:00 +0200
commitbd485af6e9bce81eaeb4132496379701215c6555 (patch)
treec8affe1a0c9a79863ce56e8431302c7e193fddc8 /openvpn/src/openvpn/options.c
parent9b671275c699ab8af7692144f1c754b8a5d101db (diff)
make openvpn compile againv0.5.15
Diffstat (limited to 'openvpn/src/openvpn/options.c')
-rw-r--r--openvpn/src/openvpn/options.c17
1 files changed, 8 insertions, 9 deletions
diff --git a/openvpn/src/openvpn/options.c b/openvpn/src/openvpn/options.c
index 44b38bed..0e7d971a 100644
--- a/openvpn/src/openvpn/options.c
+++ b/openvpn/src/openvpn/options.c
@@ -1932,15 +1932,6 @@ options_postprocess_verify_ce (const struct options *options, const struct conne
if ((options->management_client_user || options->management_client_group)
&& !(options->management_flags & MF_UNIX_SOCK))
msg (M_USAGE, "--management-client-(user|group) can only be used on unix domain sockets");
-#ifdef MANAGMENT_EXTERNAL_KEY
- if(options->management_flags & MF_EXTERNAL_KEY) {
- if(options->priv_key_file)
- msg (M_USAGE, "--key and --management-external-key are mutually exclusive");
- /* set a filename for nicer output in the logs */
- options->priv_key_file = "EXTERNAL_PRIVATE_KEY";
- }
-#endif
-
#endif
/*
@@ -2366,6 +2357,14 @@ options_postprocess_mutate_ce (struct options *o, struct connection_entry *ce)
#endif
}
+#ifdef MANAGMENT_EXTERNAL_KEY
+ if(o->management_flags & MF_EXTERNAL_KEY) {
+ if(o->priv_key_file)
+ msg (M_USAGE, "--key and --management-external-key are mutually exclusive");
+ /* set a filename for nicer output in the logs */
+ o->priv_key_file = "EXTERNAL_PRIVATE_KEY";
+ }
+#endif
/*
* Set MTU defaults
*/