1
0
mirror of https://github.com/mariadb-corporation/mariadb-connector-c.git synced 2025-08-08 14:02:17 +03:00

fixed output for --plugindir: plugindir option now prints PLUGIN_DIR instead of MARIADB_PLUGINDIR

This commit is contained in:
Georg Richter
2017-01-04 16:34:15 +01:00
parent 18fd29b2ea
commit ee6f05cc73

View File

@@ -44,7 +44,7 @@ static const char *values[]=
PORT, PORT,
PLUGIN_DIR PLUGIN_DIR
}; };
void usage(void) void usage(void)
{ {
int i=0; int i=0;
@@ -100,7 +100,7 @@ int main(int argc, char **argv)
puts(PORT); puts(PORT);
break; break;
case 'p': case 'p':
puts(MARIADB_PLUGINDIR); puts(PLUGIN_DIR);
break; break;
case 'y': case 'y':
puts(LIBS_SYS); puts(LIBS_SYS);