summaryrefslogtreecommitdiff
path: root/sql/sql_plugin.cc
diff options
context:
space:
mode:
Diffstat (limited to 'sql/sql_plugin.cc')
-rw-r--r--sql/sql_plugin.cc12
1 files changed, 6 insertions, 6 deletions
diff --git a/sql/sql_plugin.cc b/sql/sql_plugin.cc
index 139b34b62cc..d448b7b9e02 100644
--- a/sql/sql_plugin.cc
+++ b/sql/sql_plugin.cc
@@ -2230,9 +2230,9 @@ err:
free_defaults(argv);
DBUG_RETURN(error == INSTALL_FAIL_NOT_OK);
#ifdef WITH_WSREP
-error:
- DBUG_RETURN(TRUE);
-#endif /* WITH_WSREP */
+wsrep_error_label:
+ DBUG_RETURN(true);
+#endif
}
@@ -2378,9 +2378,9 @@ bool mysql_uninstall_plugin(THD *thd, const LEX_CSTRING *name,
mysql_mutex_unlock(&LOCK_plugin);
DBUG_RETURN(error);
#ifdef WITH_WSREP
-error:
- DBUG_RETURN(TRUE);
-#endif /* WITH_WSREP */
+wsrep_error_label:
+ DBUG_RETURN(true);
+#endif
}