| 974 | } |
| 975 | |
| 976 | static int gitdiff_oldname(struct gitdiff_data *state, |
| 977 | const char *line, |
| 978 | struct patch *patch) |
| 979 | { |
| 980 | return gitdiff_verify_name(state, line, |
| 981 | patch->is_new, &patch->old_name, |
| 982 | DIFF_OLD_NAME); |
| 983 | } |
| 984 | |
| 985 | static int gitdiff_newname(struct gitdiff_data *state, |
| 986 | const char *line, |
nothing calls this directly
no test coverage detected