Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
0ad752e8
Commit
0ad752e8
authored
Oct 21, 2004
by
serg@serg.mylan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
s/puts/printf/
parent
411b111b
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
5 deletions
+18
-5
.bzrignore
.bzrignore
+13
-0
myisam/myisamchk.c
myisam/myisamchk.c
+5
-5
No files found.
.bzrignore
View file @
0ad752e8
...
...
@@ -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
myisam/myisamchk.c
View file @
0ad752e8
...
...
@@ -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
);
p
uts
(
"
\n
Global options:
\n
\
p
rintf
(
"
\n
Global 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__)
p
uts
(
"semicolon (;)"
);
p
rintf
(
"semicolon (;)"
);
#else
p
uts
(
"colon (:)"
);
p
rintf
(
"colon (:)"
);
#endif
p
uts
(
", they will be used
\n
\
p
rintf
(
", 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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment