| 616 | } |
| 617 | |
| 618 | static bool dir_writable(const char *fname) |
| 619 | { |
| 620 | return access(path_dirname(tmpctx, fname), W_OK) == 0; |
| 621 | } |
| 622 | |
| 623 | /* Returns config file name if not writable */ |
| 624 | static const char *config_not_writable(const tal_t *ctx, |
no test coverage detected