| # | Line 555 | Line 555 | findComment(Scene *sc, const char *match, int n) | |
|---|---|---|
| 555 | return(-1); | |
| 556 | n *= (n > 0); | |
| 557 | while (n < sc->ndescr) | |
| 558 | < | if (strcasestr(sc->descr[n], match) != NULL) |
| 558 | > | if (strstr(sc->descr[n], match) != NULL) |
| 559 | return(n); | |
| 560 | return(-1); | |
| 561 | } | |
| – | Removed lines |
| + | Added lines |
| < | Changed lines (old) |
| > | Changed lines (new) |