https://bugzilla.novell.com/show_bug.cgi?id=213927 ------- Comment #11 from fejj@novell.com 2006-11-15 14:41 MST ------- afaict, this has to be a cups bug... we are simply doing a CUPS_GET_PPDS request with requested-attributes of: "ppd-name", "ppd-make", and "ppd-make-and-model" and cups is returning: attr->name = attributes-charset; value = utf-8 attr->name = attributes-natural-language; value = en-US and nothing else. here's how we are creating our query: static const char **attrs = { "ppd-name", "ppd-make", "ppd-make-and-model" }; cups_lang_t *language; ipp_t *request; language = cupsLangDefault (); request = ippNew (); request->request.op.operation_id = CUPS_GET_PPDS; request->request.op.request_id = 1; ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_CHARSET, "attributes-charset", NULL, "utf-8"); ippAddString(request, IPP_TAG_OPERATION, IPP_TAG_LANGUAGE, "attributes-natural-language", NULL, language->language); cupsLangFree (language); ippAddStrings(request, IPP_TAG_PRINTER, IPP_TAG_KEYWORD | IPP_TAG_COPY, "requested-attributes", 3, NULL, attrs); there's no usage anywhere of internal cups functions -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.