mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
change file name to avoid conflict
corrected mistake in previous patch
This commit is contained in:
parent
21e8a09056
commit
554ae2336e
2 changed files with 5 additions and 3 deletions
|
@ -26,7 +26,7 @@ ndb_select_all_SOURCES = select_all.cpp \
|
|||
../test/src/NDBT_ResultRow.cpp \
|
||||
$(tools_common_sources)
|
||||
ndb_select_count_SOURCES = select_count.cpp $(tools_common_sources)
|
||||
ndb_restore_SOURCES = restore/main.cpp \
|
||||
ndb_restore_SOURCES = restore/restore_main.cpp \
|
||||
restore/consumer.cpp \
|
||||
restore/consumer_restore.cpp \
|
||||
restore/consumer_printer.cpp \
|
||||
|
|
|
@ -123,15 +123,17 @@ get_one_option(int optid, const struct my_option *opt __attribute__((unused)),
|
|||
case 'n':
|
||||
if (ga_nodeId == 0)
|
||||
{
|
||||
printf("Error in --nodeid|-n setting, see --help\n");
|
||||
printf("Error in --nodeid,-n setting, see --help\n");
|
||||
exit(1);
|
||||
}
|
||||
break;
|
||||
case 'b':
|
||||
if (ga_backupId == 0)
|
||||
{
|
||||
printf("Error in --backupid|-b setting, see --help\n");
|
||||
printf("Error in --backupid,-b setting, see --help\n");
|
||||
exit(1);
|
||||
}
|
||||
break;
|
||||
case '?':
|
||||
usage();
|
||||
exit(0);
|
Loading…
Reference in a new issue