diff options
| author | Patrick Steinhardt <ps@pks.im> | 2018-08-10 13:03:33 +0200 |
|---|---|---|
| committer | Patrick Steinhardt <ps@pks.im> | 2018-09-28 11:14:13 +0200 |
| commit | b944e13782370844823fcdc712fefcde3bb3fe73 (patch) | |
| tree | c683c316553c2ef40661f6119913d9b51de9e2cd /tests/config/write.c | |
| parent | 1aeff5d7c97eac81965d09b0fac8e89ddb6909be (diff) | |
| download | libgit2-b944e13782370844823fcdc712fefcde3bb3fe73.tar.gz | |
config: rename "config_file.h" to "config_backend.h"
The header "config_file.h" has a list of inline-functions to access the
contents of a config backend without directly messing with the struct's
function pointers. While all these functions are called
"git_config_file_*", they are in fact completely backend-agnostic and
don't care whether it is a file or not. Rename all the function to
instead be backend-agnostic versions called "git_config_backend_*" and
rename the header to match.
Diffstat (limited to 'tests/config/write.c')
| -rw-r--r-- | tests/config/write.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/tests/config/write.c b/tests/config/write.c index 521dcb0ae..bd0f5b277 100644 --- a/tests/config/write.c +++ b/tests/config/write.c @@ -2,7 +2,6 @@ #include "buffer.h" #include "fileops.h" #include "git2/sys/config.h" -#include "config_file.h" #include "config.h" void test_config_write__initialize(void) |
