X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=clients%2Futilities.c;h=9ad6edcf90789310dea7d3c4da3abcc8dbb45ac1;hb=8270650b0a22bc6e8ad83aa39b05c5b6aff1faf8;hp=6551684db003f26c0497c80d149d0da1f6f04b3e;hpb=34fc4157bda6f458cc603cf32c93507dab9c4f8a;p=m6w6%2Flibmemcached diff --git a/clients/utilities.c b/clients/utilities.c index 6551684d..9ad6edcf 100644 --- a/clients/utilities.c +++ b/clients/utilities.c @@ -16,13 +16,13 @@ long int timedif(struct timeval a, struct timeval b) return s + us; } -void version_command(char *command_name) +void version_command(const char *command_name) { printf("%s v%u.%u\n", command_name, 1, 0); exit(0); } -static char *lookup_help(memcached_options option) +static const char *lookup_help(memcached_options option) { switch (option) { @@ -54,7 +54,7 @@ static char *lookup_help(memcached_options option) return "forgot to document this function :)"; } -void help_command(char *command_name, char *description, +void help_command(const char *command_name, const char *description, const struct option *long_options, memcached_programs_help_st *options __attribute__((unused))) { @@ -66,7 +66,7 @@ void help_command(char *command_name, char *description, for (x= 0; long_options[x].name; x++) { - char *help_message; + const char *help_message; printf("\t --%s%c\n", long_options[x].name, long_options[x].has_arg ? '=' : ' ');