diff -U2 -r /var/lib/copr-rpmbuild/results/i2pd-git/upstream-unpacked/Source0/i2pd-openssl/daemon/I2PControlHandlers.cpp /var/lib/copr-rpmbuild/results/i2pd-git/srpm-unpacked/i2pd-openssl.tar.gz-extract/i2pd-openssl/daemon/I2PControlHandlers.cpp --- /var/lib/copr-rpmbuild/results/i2pd-git/upstream-unpacked/Source0/i2pd-openssl/daemon/I2PControlHandlers.cpp 2026-08-17 00:08:57.000000000 +0000 +++ /var/lib/copr-rpmbuild/results/i2pd-git/srpm-unpacked/i2pd-openssl.tar.gz-extract/i2pd-openssl/daemon/I2PControlHandlers.cpp 2026-08-17 00:07:04.000000000 +0000 @@ -309,5 +309,4 @@ void I2PControlHandlers::ClientServicesInfoHandler (const boost::property_tree::ptree& params, std::ostringstream& results) { - bool first = true; for (auto it = params.begin (); it != params.end (); it++) { @@ -316,6 +315,5 @@ if (it1 != m_ClientServicesInfoHandlers.end ()) { - if (!first) results << ","; - else first = false; + if (it != params.begin ()) results << ","; (this->*(it1->second))(results); }