Some Kodak printers/PPD files report "Eastman Kodak Company", others
simply "Kodak" as manufacturer name. Let the
ieee1284NormalizeMakeAndModel() function use simply "Kodak" here.
bufptr += 2;
}
+ bufptr = buffer;
+ while ((bufptr = strcasestr(bufptr, "eastman kodak company")) != NULL &&
+ (bufptr == buffer || !isalnum(*(bufptr - 1))) &&
+ !isalnum(*(bufptr + 21)))
+ {
+ /*
+ * Replace with Kodak...
+ */
+
+ bufptr[0] = 'K';
+ bufptr[1] = 'o';
+ bufptr[2] = 'd';
+ bufptr[3] = 'a';
+ bufptr[4] = 'k';
+ moverightpart(buffer, bufsize, bufptr + 5, -16);
+ if (modelptr >= bufptr + 21)
+ modelptr -= 16;
+ bufptr += 5;
+ }
+
bufptr = buffer;
while ((bufptr = strcasestr(bufptr, "Lexmark International")) != NULL)
{