diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2010-07-16 12:29:27 +0200 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2010-07-16 12:29:27 +0200 |
commit | 998bb7ac652581d6ef3a5821aa8dcb6a3a95ecdb (patch) | |
tree | 7156da18afa2b990248614f9f652e2f0f55d1152 /package/strongswan/patches/patch-src_starter_netkey_c | |
parent | a89de37272ba44b8ad89eb4277bebdc5e657a999 (diff) | |
parent | 71582bdd2080c6d7fb446d4cea10c93cf781419d (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'package/strongswan/patches/patch-src_starter_netkey_c')
-rw-r--r-- | package/strongswan/patches/patch-src_starter_netkey_c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/package/strongswan/patches/patch-src_starter_netkey_c b/package/strongswan/patches/patch-src_starter_netkey_c new file mode 100644 index 000000000..eae417f7b --- /dev/null +++ b/package/strongswan/patches/patch-src_starter_netkey_c @@ -0,0 +1,19 @@ +--- strongswan-4.4.0.orig/src/starter/netkey.c 2010-03-15 21:52:51.000000000 +0100 ++++ strongswan-4.4.0/src/starter/netkey.c 2010-07-14 19:05:06.911085736 +0200 +@@ -48,6 +48,8 @@ starter_netkey_init(void) + } + + /* make sure that all required IPsec modules are loaded */ ++ /* OpenADK loads all kernel modules already */ ++#if 0 + if (stat(PROC_MODULES, &stb) == 0) + { + ignore_result(system("modprobe -qv ah4")); +@@ -60,6 +62,7 @@ starter_netkey_init(void) + DBG(DBG_CONTROL, + DBG_log("Found netkey IPsec stack") + ) ++#endif + return TRUE; + } + |