待ってればリリースされるんじゃない

2022-08-16 18:41 +0900 NanashiNoGombe o [master] {origin/master} {origin/HEAD} an ad-hoc fix against malformed read.

--- a/BBS2chProxyConnection.cpp
+++ b/BBS2chProxyConnection.cpp
@@ -843,7 +843,13 @@ int BBS2chProxyConnection::datProxy(const char *url, const char *method, BBS2chP
+#if 1
+ /* This is an ad-hoc fix against malformed read.cgi behaviors (e.g. krsw server) */
+ snprintf(buf, 16384, "%s1-", url);
+ curl_easy_setopt(curl, CURLOPT_URL, buf);
+#else
curl_easy_setopt(curl, CURLOPT_URL, url);
+#endif