summaryrefslogtreecommitdiffstats
path: root/plugin/auth_examples
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/auth_examples')
-rw-r--r--plugin/auth_examples/qa_auth_client.c3
-rw-r--r--plugin/auth_examples/qa_auth_interface.c3
-rw-r--r--plugin/auth_examples/test_plugin.c3
3 files changed, 6 insertions, 3 deletions
diff --git a/plugin/auth_examples/qa_auth_client.c b/plugin/auth_examples/qa_auth_client.c
index a915306e..af05c9b1 100644
--- a/plugin/auth_examples/qa_auth_client.c
+++ b/plugin/auth_examples/qa_auth_client.c
@@ -113,5 +113,6 @@ mysql_declare_client_plugin(AUTHENTICATION)
NULL,
NULL,
NULL,
- test_plugin_client
+ test_plugin_client,
+ NULL
mysql_end_client_plugin;
diff --git a/plugin/auth_examples/qa_auth_interface.c b/plugin/auth_examples/qa_auth_interface.c
index ad1f6fff..3903f3d2 100644
--- a/plugin/auth_examples/qa_auth_interface.c
+++ b/plugin/auth_examples/qa_auth_interface.c
@@ -250,5 +250,6 @@ mysql_declare_client_plugin(AUTHENTICATION)
NULL,
NULL,
NULL,
- test_plugin_client
+ test_plugin_client,
+ NULL
mysql_end_client_plugin;
diff --git a/plugin/auth_examples/test_plugin.c b/plugin/auth_examples/test_plugin.c
index 04405a1c..f5ef08dd 100644
--- a/plugin/auth_examples/test_plugin.c
+++ b/plugin/auth_examples/test_plugin.c
@@ -230,5 +230,6 @@ mysql_declare_client_plugin(AUTHENTICATION)
NULL,
NULL,
NULL,
- test_plugin_client
+ test_plugin_client,
+ NULL
mysql_end_client_plugin;