ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/common/objutil.c
(Generate patch)

Comparing ray/src/common/objutil.c (file contents):
Revision 2.8 by greg, Tue Jun 23 19:29:40 2020 UTC vs.
Revision 2.9 by greg, Wed Jun 24 01:16:09 2020 UTC

# 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   }

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines