| 161 | */ |
| 162 | |
| 163 | void |
| 164 | cupsdStartColor(void) |
| 165 | { |
| 166 | #if !defined(__APPLE__) && defined(HAVE_DBUS) |
| 167 | cupsd_printer_t *p; /* Current printer */ |
| 168 | |
| 169 | |
| 170 | colord_con = dbus_bus_get(DBUS_BUS_SYSTEM, NULL); |
| 171 | |
| 172 | for (p = (cupsd_printer_t *)cupsArrayFirst(Printers); |
| 173 | p; |
| 174 | p = (cupsd_printer_t *)cupsArrayNext(Printers)) |
| 175 | cupsdRegisterColor(p); |
| 176 | #endif /* !__APPLE__ && HAVE_DBUS */ |
| 177 | } |
| 178 | |
| 179 | |
| 180 | /* |
no test coverage detected