Commit bc5f6412 authored by Yoni Fogel's avatar Yoni Fogel

Removed old comment.

Fixed usage.
Addresses #149

git-svn-id: file:///svn/tokudb@1054 c7de825b-a66e-492c-adef-691d508d4ae1
parent 0324f47d
...@@ -163,7 +163,6 @@ int main(int argc, char *argv[]) { ...@@ -163,7 +163,6 @@ int main(int argc, char *argv[]) {
g.exitcode = EXIT_FAILURE; g.exitcode = EXIT_FAILURE;
fprintf(stderr, "%s: dbenv->close: %s\n", g.progname, db_strerror(retval)); fprintf(stderr, "%s: dbenv->close: %s\n", g.progname, db_strerror(retval));
} }
//TODO: /* Resend any caught signal. */
if (g.config_options) free(g.config_options); if (g.config_options) free(g.config_options);
if (g.subdatabase) free(g.subdatabase); if (g.subdatabase) free(g.subdatabase);
if (g.read_header.data) free(g.read_header.data); if (g.read_header.data) free(g.read_header.data);
...@@ -221,8 +220,7 @@ int load_database() ...@@ -221,8 +220,7 @@ int load_database()
int usage() int usage()
{ {
fprintf(stderr, fprintf(stderr,
"usage: %s [-nTV] [-c name=value] [-f input_file]\n" "usage: %s [-TV] [-c name=value] [-f file] [-h home] [-t btree] db_file\n",
" [-h home] [-t btree] db_file\n",
g.progname); g.progname);
return EXIT_FAILURE; return EXIT_FAILURE;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment