| 390 | */ |
| 391 | |
| 392 | int /* O - 0 on success, -1 on error */ |
| 393 | cupsdUnlinkOrRemoveFile( |
| 394 | const char *filename) /* I - Filename */ |
| 395 | { |
| 396 | if (Classification) |
| 397 | return (cupsdRemoveFile(filename)); |
| 398 | else |
| 399 | return (unlink(filename)); |
| 400 | } |
| 401 | |
| 402 | |
| 403 | #ifndef HAVE_REMOVEFILE |
no test coverage detected