@@ -52,8 +52,7 @@ static void add_to_plugin_load_list(const char *plugin_def)
52
52
static char XTRABACKUP_EXE[] = " xtrabackup" ;
53
53
54
54
/*
55
- Read "plugin-load" value (encryption plugin) from backup-my.cnf during
56
- prepare phase.
55
+ Read "plugin-load" value from backup-my.cnf during prepare phase.
57
56
The value is stored during backup phase.
58
57
*/
59
58
static std::string get_encryption_plugin_from_cnf ()
@@ -191,7 +190,7 @@ void encryption_plugin_prepare_init(int argc, char **argv)
191
190
std::string plugin_load= get_encryption_plugin_from_cnf ();
192
191
if (plugin_load.size ())
193
192
{
194
- msg (" Loading encryption plugin from %s" , plugin_load.c_str ());
193
+ msg (" Loading plugins from %s" , plugin_load.c_str ());
195
194
}
196
195
else
197
196
{
@@ -221,9 +220,9 @@ static void encryption_plugin_init(int argc, char **argv)
221
220
/* Patch optional and mandatory plugins, we only need to load the one in xb_plugin_load. */
222
221
mysql_optional_plugins[0 ] = mysql_mandatory_plugins[0 ] = 0 ;
223
222
plugin_maturity = MariaDB_PLUGIN_MATURITY_UNKNOWN; /* mariabackup accepts all plugins */
224
- msg (" Loading encryption plugin " );
223
+ msg (" Loading plugins " );
225
224
for (int i= 1 ; i < argc; i++)
226
- msg (" \t Encryption plugin parameter : '%s'" , argv[i]);
225
+ msg (" \t Plugin parameter : '%s'" , argv[i]);
227
226
plugin_init (&argc, argv, PLUGIN_INIT_SKIP_PLUGIN_TABLE);
228
227
}
229
228
0 commit comments