28 lines
740 B
Diff
28 lines
740 B
Diff
--- cups-1.3.7/scheduler/cups-driverd.c.orig 2008-04-01 00:33:33.000000000 +0200
|
|
+++ cups-1.3.7/scheduler/cups-driverd.c 2008-05-07 12:19:40.000000000 +0200
|
|
@@ -180,8 +180,6 @@
|
|
int type) /* I - Driver type */
|
|
{
|
|
ppd_info_t *ppd; /* PPD */
|
|
- char *recommended; /* Foomatic driver string */
|
|
-
|
|
|
|
/*
|
|
* Add a new PPD file...
|
|
@@ -238,15 +236,6 @@
|
|
strlcpy(ppd->record.device_id, device_id, sizeof(ppd->record.device_id));
|
|
|
|
/*
|
|
- * Strip confusing (and often wrong) "recommended" suffix added by
|
|
- * Foomatic drivers...
|
|
- */
|
|
-
|
|
- if ((recommended = strstr(ppd->record.make_and_model,
|
|
- " (recommended)")) != NULL)
|
|
- *recommended = '\0';
|
|
-
|
|
- /*
|
|
* Return the new PPD pointer...
|
|
*/
|
|
|