diff options
author | Samuli Seppänen <samuli@openvpn.net> | 2011-02-11 15:11:51 +0200 |
---|---|---|
committer | David Sommerseth <dazo@users.sourceforge.net> | 2011-02-27 00:55:14 +0100 |
commit | 980d44047f4ab1541f80df1c9c2cfe6a2c572af8 (patch) | |
tree | a21d988d9ac13556527d116a57044bd37f195b2e /config-win32.h | |
parent | Fix compiler warning when compiling against OpenSSL 1.0.0 (diff) | |
download | openvpn-980d44047f4ab1541f80df1c9c2cfe6a2c572af8.tar.xz |
Added ENABLE_PASSWORD_SAVE to config-win32.h
This change adds ENABLE_PASSWORD_SAVE to config-win32.h. This option is also
defined in win/settings.in, but it does not have any effect there.
Signed-off-by: Samuli Seppänen <samuli@openvpn.net>
Acked-by: James Yonan <james@openvpn.net>
Signed-off-by: David Sommerseth <dazo@users.sourceforge.net>
Diffstat (limited to '')
-rw-r--r-- | config-win32.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/config-win32.h b/config-win32.h index be0b320..8f4de3b 100644 --- a/config-win32.h +++ b/config-win32.h @@ -50,6 +50,9 @@ typedef unsigned long in_addr_t; #define TAP_WIN32_DEBUG
#endif
+/* Enable reading credentials from a file */ +#define ENABLE_PASSWORD_SAVE 1 + /* Enable client/server capability */
#define ENABLE_CLIENT_SERVER 1
|