We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
file: memcached.c function: static void process_bin_stat(conn *c) defect code: } else if (strcmp(subcommand, "reset") == 0) { correct code: } else if (strncmp(subcommand, "reset", 5) == 0) {
Original issue reported on code.google.com by victor.k...@sun.com on 26 Nov 2008 at 10:23
victor.k...@sun.com
The text was updated successfully, but these errors were encountered:
Fixed in http://github.com/dustin/memcached/commit/63ab456
Original comment by dsalli...@gmail.com on 21 Dec 2008 at 12:52
dsalli...@gmail.com
Sorry, something went wrong.
No branches or pull requests
Original issue reported on code.google.com by
victor.k...@sun.com
on 26 Nov 2008 at 10:23The text was updated successfully, but these errors were encountered: