diff options
Diffstat (limited to 'src/libcharon/plugins/xauth_null/xauth_null_plugin.c')
-rw-r--r-- | src/libcharon/plugins/xauth_null/xauth_null_plugin.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcharon/plugins/xauth_null/xauth_null_plugin.c b/src/libcharon/plugins/xauth_null/xauth_null_plugin.c index 25b7b3841..28ea7af8d 100644 --- a/src/libcharon/plugins/xauth_null/xauth_null_plugin.c +++ b/src/libcharon/plugins/xauth_null/xauth_null_plugin.c @@ -29,9 +29,9 @@ METHOD(plugin_t, get_features, int, { static plugin_feature_t f[] = { PLUGIN_CALLBACK(xauth_method_register, xauth_null_create_server), - PLUGIN_PROVIDE(XAUTH_SERVER, XAUTH_NULL), + PLUGIN_PROVIDE(XAUTH_SERVER, "null"), PLUGIN_CALLBACK(xauth_method_register, xauth_null_create_peer), - PLUGIN_PROVIDE(XAUTH_PEER, XAUTH_NULL), + PLUGIN_PROVIDE(XAUTH_PEER, "null"), }; *features = f; return countof(f); |