X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Fmemstat.c;h=e7810200db7736f721f7380e57a8c6ed0dc14704;hb=875200dc0c5668bba4f8a68b487f9d2f2a1eedb0;hp=76fdd9c6dde3e308d3bbaedf0f4a8b3c409ff76b;hpb=6d0bec130624e22e695dbf4038fbeed9e1c26c60;p=m6w6%2Flibmemcached diff --git a/src/memstat.c b/src/memstat.c index 76fdd9c6..e7810200 100644 --- a/src/memstat.c +++ b/src/memstat.c @@ -34,7 +34,7 @@ int main(int argc, char *argv[]) void options_parse(int argc, char *argv[]) { - static struct option long_options[] = + static struct option long_options[]= { {"version", no_argument, NULL, OPT_VERSION}, {"help", no_argument, NULL, OPT_HELP}, @@ -45,26 +45,27 @@ void options_parse(int argc, char *argv[]) {0, 0, 0, 0}, }; - int option_index = 0; + int option_index= 0; int option_rv; while (1) { - option_rv = getopt_long(argc, argv, "", long_options, &option_index); + option_rv= getopt_long(argc, argv, "Vhvds:", long_options, &option_index); if (option_rv == -1) break; - switch (option_rv) { + switch (option_rv) + { case 0: break; - case OPT_VERSION: /* --version */ + case OPT_VERSION: /* --version or -V */ printf("memcache tools, memcat, v1.0\n"); exit(0); break; - case OPT_HELP: /* --help */ + case OPT_HELP: /* --help or -h */ printf("useful help messages go here\n"); exit(0); break; - case OPT_SERVERS: /* --servers */ - opt_servers = optarg; + case OPT_SERVERS: /* --servers or -s */ + opt_servers= optarg; break; case '?': /* getopt_long already printed an error message. */