diff options
author | HF <holyfoot@mariadb.com> | 2019-07-05 12:22:04 +0100 |
---|---|---|
committer | HF <holyfoot@mariadb.com> | 2019-07-05 12:22:04 +0100 |
commit | d04961cdb346667d0a4e2f8bd74950668af7700c (patch) | |
tree | b188046ee1580a712e38a95be8746817ed9bf92e /plugin | |
parent | be22d1ff39e79a9dbd5360f2f11b57de291d5366 (diff) | |
download | mariadb-git-d04961cdb346667d0a4e2f8bd74950668af7700c.tar.gz |
Make Win compiler happy.
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/server_audit/server_audit.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/plugin/server_audit/server_audit.c b/plugin/server_audit/server_audit.c index 16a677e2644..1555495b15f 100644 --- a/plugin/server_audit/server_audit.c +++ b/plugin/server_audit/server_audit.c @@ -407,10 +407,12 @@ static TYPELIB output_typelib= static MYSQL_SYSVAR_ENUM(output_type, output_type, PLUGIN_VAR_RQCMDARG, #ifdef DO_SYSLOG "Desired output type. Possible values - 'syslog', 'file'" + " or 'null' as no output.", #else "Desired output type. Possible values - 'file'" + " or 'null' as no output.", #endif - " or 'null' as no output.", 0, update_output_type, OUTPUT_FILE, + 0, update_output_type, OUTPUT_FILE, &output_typelib); static MYSQL_SYSVAR_STR(file_path, file_path, PLUGIN_VAR_RQCMDARG, "Path to the log file.", NULL, update_file_path, default_file_name); |