diff options
author | Tobias Brunner <tobias@strongswan.org> | 2013-03-18 12:18:44 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2013-03-18 12:20:47 +0100 |
commit | 6cf79c1e9d56dcd02c4c0fcc4494c99356608394 (patch) | |
tree | 1b6929465e7467330df6676a727d7cf003c91da7 /src | |
parent | 96776d6f77e392cd44c0240bc39612242257a69f (diff) | |
download | strongswan-6cf79c1e9d56dcd02c4c0fcc4494c99356608394.tar.bz2 strongswan-6cf79c1e9d56dcd02c4c0fcc4494c99356608394.tar.xz |
Algorithms are not really specific to an IKE version
But not all of them can be used with IKEv1.
Fixes #314.
Diffstat (limited to 'src')
-rw-r--r-- | src/libcharon/plugins/stroke/stroke_list.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcharon/plugins/stroke/stroke_list.c b/src/libcharon/plugins/stroke/stroke_list.c index ab33933e2..7f368148c 100644 --- a/src/libcharon/plugins/stroke/stroke_list.c +++ b/src/libcharon/plugins/stroke/stroke_list.c @@ -1246,7 +1246,7 @@ static void list_algs(FILE *out) int len; fprintf(out, "\n"); - fprintf(out, "List of registered IKEv2 Algorithms:\n"); + fprintf(out, "List of registered IKE algorithms:\n"); fprintf(out, "\n encryption:"); len = 13; enumerator = lib->crypto->create_crypter_enumerator(lib->crypto); |