| 1740 | } |
| 1741 | |
| 1742 | void |
| 1743 | ghb_remove_old_queue_file(int pid) |
| 1744 | { |
| 1745 | char *name; |
| 1746 | |
| 1747 | name = g_strdup_printf ("queue.%d", pid); |
| 1748 | remove_config_file(name); |
| 1749 | g_free(name); |
| 1750 | } |
| 1751 | |
| 1752 | GhbValue* ghb_create_copy_mask(GhbValue *settings) |
| 1753 | { |
no test coverage detected