| 666 | } |
| 667 | |
| 668 | const char *repo_common_path_replace(const struct repository *repo, |
| 669 | struct strbuf *sb, |
| 670 | const char *fmt, ...) |
| 671 | { |
| 672 | va_list args; |
| 673 | strbuf_reset(sb); |
| 674 | va_start(args, fmt); |
| 675 | repo_common_pathv(repo, sb, fmt, args); |
| 676 | va_end(args); |
| 677 | return sb->buf; |
| 678 | } |
| 679 | |
| 680 | static struct passwd *getpw_str(const char *username, size_t len) |
| 681 | { |
no test coverage detected