commit 8d6dd58a06e247390a1ee15ad970fb7477e4ba0a from: Markus Uhlin date: Sat Aug 16 20:24:18 2025 UTC 80 columns commit - 2e90e595239158d3e30d13889e7c8f80a5b87b9f commit + 8d6dd58a06e247390a1ee15ad970fb7477e4ba0a blob - 25b6d86899fef98ed52e5ed21de225ef007e74e9 blob + 39dbb33d8979125c210be80665656ee2904ad4d7 --- FICS/gamedb.c +++ FICS/gamedb.c @@ -1724,9 +1724,12 @@ RemHist(char *who) } stolower(Opp); - /* Validate Opp before using it as a login */ - if (strstr(Opp, "..") || strchr(Opp, '/') || strchr(Opp, '\\')) { - warnx("%s: invalid Opp value: '%s' (skipping)", __func__, Opp); + + if (strstr(Opp, "..") || + strchr(Opp, '/') || + strchr(Opp, '\\')) { + warnx("%s: invalid value: " + "Opp = '%s' (skipping)", __func__, Opp); iter_no++; continue; }