We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa88329 commit 43fa1d4Copy full SHA for 43fa1d4
src/bin/common/options.hpp
@@ -95,9 +95,10 @@ class client_options {
95
.apply = [](const client_options &opt, const extended_option &ext, memcached_st *memc) {
96
if (auto username = ext.arg) {
97
#if !LIBMEMCACHED_WITH_SASL_SUPPORT
98
+ (void) memc;
99
if (!opt.isset("quiet")) {
100
std::cerr
- << "SASL username was supplied, but binary was not built with SASL support.\n";
101
+ << "SASL username '" << username << "' was supplied, but binary was not built with SASL support.\n";
102
}
103
return false;
104
#else
0 commit comments