| 1331 | */ |
| 1332 | |
| 1333 | void |
| 1334 | cgiShowIPPError(const char *message) /* I - Contextual message */ |
| 1335 | { |
| 1336 | cgiSetVariable("MESSAGE", cgiText(message)); |
| 1337 | cgiSetVariable("ERROR", cupsLastErrorString()); |
| 1338 | cgiCopyTemplateLang("error.tmpl"); |
| 1339 | } |
| 1340 | |
| 1341 | |
| 1342 | /* |
no test coverage detected