The PPD keyword got the option values concatenated together without
commas, which broke filter processing in libcupsfilters
Sometimes more commas better commas :)
Changes in CUPS v2.4.9 (TBA)
----------------------------
+- Fixed creating of `cupsUrfSupported` PPD keyword (Issue #952)
- Fixed searching for destinations in web ui (Issue #954)
- Fixed TLS negotiation using OpenSSL with servers that require the TLS SNI
extension.
for (i = 0, count = ippGetCount(attr); i < count; i ++)
{
keyword = ippGetString(attr, i, NULL);
- cupsFilePrintf(fp, "%s%s", keyword, i ? "" : ",");
+ cupsFilePrintf(fp, "%s%s", keyword, i != count - 1 ? "," : "");
}
cupsFilePuts(fp, "\"\n");
}