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

Comparing ray/src/util/rcode_norm.c (file contents):
Revision 2.2 by greg, Sat Jul 20 02:07:23 2019 UTC vs.
Revision 2.3 by greg, Tue Aug 13 16:31:35 2019 UTC

# Line 38 | Line 38 | encode_normals(NORMCODEC *ncp)
38          long    nexpected = (long)ncp->res.xr * ncp->res.yr;
39  
40          if (ncp->inpfmt[0]) {
41 <                if (strcasestr(ncp->inpfmt, "ascii") != NULL)
41 >                if (strstr(ncp->inpfmt, "ascii") != NULL)
42                          ncp->format = 'a';
43 <                else if (strcasestr(ncp->inpfmt, "float") != NULL)
43 >                else if (strstr(ncp->inpfmt, "float") != NULL)
44                          ncp->format = 'f';
45 <                else if (strcasestr(ncp->inpfmt, "double") != NULL)
45 >                else if (strstr(ncp->inpfmt, "double") != NULL)
46                          ncp->format = 'd';
47                  else {
48                          fputs(ncp->inpname, stderr);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines