mirror of
https://github.com/MariaDB/server.git
synced 2026-05-10 17:14:30 +02:00
s/puts/printf/
BitKeeper/etc/ignore: Added Docs/Images/myaccess-odbc.txt Docs/Images/myaccess.txt Docs/Images/myarchitecture.txt Docs/Images/mydll-properties.txt Docs/Images/mydsn-example.txt Docs/Images/mydsn-icon.txt Docs/Images/mydsn-options.txt Docs/Images/mydsn-setup.txt Docs/Images/mydsn-test-fail.txt Docs/Images/mydsn-test-success.txt Docs/Images/mydsn-trace.txt Docs/Images/mydsn.txt Docs/Images/myflowchart.txt to the ignore list
This commit is contained in:
parent
09a895d933
commit
855e4dafb3
2 changed files with 18 additions and 5 deletions
13
.bzrignore
13
.bzrignore
|
|
@ -909,3 +909,16 @@ vio/test-ssl
|
|||
vio/test-sslclient
|
||||
vio/test-sslserver
|
||||
vio/viotest-ssl
|
||||
Docs/Images/myaccess-odbc.txt
|
||||
Docs/Images/myaccess.txt
|
||||
Docs/Images/myarchitecture.txt
|
||||
Docs/Images/mydll-properties.txt
|
||||
Docs/Images/mydsn-example.txt
|
||||
Docs/Images/mydsn-icon.txt
|
||||
Docs/Images/mydsn-options.txt
|
||||
Docs/Images/mydsn-setup.txt
|
||||
Docs/Images/mydsn-test-fail.txt
|
||||
Docs/Images/mydsn-test-success.txt
|
||||
Docs/Images/mydsn-trace.txt
|
||||
Docs/Images/mydsn.txt
|
||||
Docs/Images/myflowchart.txt
|
||||
|
|
|
|||
|
|
@ -354,7 +354,7 @@ static void usage(void)
|
|||
puts("Description, check and repair of MyISAM tables.");
|
||||
puts("Used without options all tables on the command will be checked for errors");
|
||||
printf("Usage: %s [OPTIONS] tables[.MYI]\n", my_progname_short);
|
||||
puts("\nGlobal options:\n\
|
||||
printf("\nGlobal options:\n\
|
||||
-#, --debug=... Output debug log. Often this is 'd:t:o,filename'.\n\
|
||||
-?, --help Display this help and exit.\n\
|
||||
-O, --set-variable var=option.\n\
|
||||
|
|
@ -364,18 +364,18 @@ static void usage(void)
|
|||
-t, --tmpdir=path Path for temporary files. Multiple paths can be\n\
|
||||
specified, separated by ");
|
||||
#if defined( __WIN__) || defined(OS2) || defined(__NETWARE__)
|
||||
puts("semicolon (;)");
|
||||
printf("semicolon (;)");
|
||||
#else
|
||||
puts("colon (:)");
|
||||
printf("colon (:)");
|
||||
#endif
|
||||
puts(", they will be used\n\
|
||||
printf(", they will be used\n\
|
||||
in a round-robin fashion.\n\
|
||||
-s, --silent Only print errors. One can use two -s to make\n\
|
||||
myisamchk very silent.\n\
|
||||
-v, --verbose Print more information. This can be used with\n\
|
||||
--description and --check. Use many -v for more verbosity.\n\
|
||||
-V, --version Print version and exit.\n\
|
||||
-w, --wait Wait if table is locked.\n");
|
||||
-w, --wait Wait if table is locked.\n\n");
|
||||
#ifdef DEBUG
|
||||
puts(" --start-check-pos=# Start reading file at given offset.\n");
|
||||
#endif
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue