X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=src%2Fbin%2Fmemcapable.cc;h=122c294e79adc6e4c9b1008e6eeb8c1d9255ea96;hb=92d18858b417309f6bdee6bce464a4f3d6a375fd;hp=54e9c2242bea3c28061814a83fda375e75dba85f;hpb=5070db19f82c59353c86b3d43d81f309cdaab250;p=awesomized%2Flibmemcached diff --git a/src/bin/memcapable.cc b/src/bin/memcapable.cc index 54e9c224..122c294e 100644 --- a/src/bin/memcapable.cc +++ b/src/bin/memcapable.cc @@ -1,6 +1,6 @@ /* +--------------------------------------------------------------------+ - | libmemcached - C/C++ Client Library for memcached | + | libmemcached-awesome - C/C++ Client Library for memcached | +--------------------------------------------------------------------+ | Redistribution and use in source and binary forms, with or without | | modification, are permitted under the terms of the BSD license. | @@ -9,7 +9,7 @@ | the terms online at: https://opensource.org/licenses/BSD-3-Clause | +--------------------------------------------------------------------+ | Copyright (c) 2006-2014 Brian Aker https://datadifferential.com/ | - | Copyright (c) 2020 Michael Wallner | + | Copyright (c) 2020-2021 Michael Wallner https://awesome.co/ | +--------------------------------------------------------------------+ */ @@ -1868,7 +1868,8 @@ int main(int argc, char **argv) { "\t\t\tEverything else will start the test\n" "\t-T n\tJust run the test named n\n" "\t-a\tOnly test the ascii protocol\n" - "\t-b\tOnly test the binary protocol\n", + "\t-b\tOnly test the binary protocol\n\n" + "WARNING: This will FLUSH your server!\n\n", argv[0]); return EXIT_SUCCESS; } @@ -1879,7 +1880,7 @@ int main(int argc, char **argv) { return EXIT_FAILURE; } - #ifdef _WIN32 +#ifdef _WIN32 WSADATA wsaData; if (WSAStartup(MAKEWORD(2, 2), &wsaData)) { fprintf(stderr, "Socket Initialization Error.\n");