follow-up (from entrez)

This commit is contained in:
nhmall
2022-05-21 21:22:20 -04:00
parent f19ccde709
commit 68d7ef440f

View File

@@ -2630,7 +2630,7 @@ makeplural(const char* oldstr)
/* -eau/-eaux (gateau, chapeau...) */
if (len >= 3 && !strcmpi(spot - 2, "eau")
/* 'bureaus' is the more common plural of 'bureau' */
&& strncmpi(str, "bureau", 6)) {
&& BSTRCMPI(str, spot - 5, "bureau")) {
Strcasecpy(spot + 1, "x");
goto bottom;
}