diff options
| author | Patrick Steinhardt <ps@pks.im> | 2019-06-29 09:17:32 +0200 |
|---|---|---|
| committer | Patrick Steinhardt <ps@pks.im> | 2019-07-20 19:11:20 +0200 |
| commit | e54343a4024e75dfaa940e652c2c9799d33634b2 (patch) | |
| tree | b483b313f4280db51a2a5aa29f53e6e9a2b2eb86 /tests/online | |
| parent | 1f44079cae42864cb51d98ca57f5d1f4d8296693 (diff) | |
| download | libgit2-e54343a4024e75dfaa940e652c2c9799d33634b2.tar.gz | |
fileops: rename to "futils.h" to match function signatures
Our file utils functions all have a "futils" prefix, e.g.
`git_futils_touch`. One would thus naturally guess that their
definitions and implementation would live in files "futils.h" and
"futils.c", respectively, but in fact they live in "fileops.h".
Rename the files to match expectations.
Diffstat (limited to 'tests/online')
| -rw-r--r-- | tests/online/clone.c | 2 | ||||
| -rw-r--r-- | tests/online/fetchhead.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/online/clone.c b/tests/online/clone.c index b7042f3d6..60aaeeb0f 100644 --- a/tests/online/clone.c +++ b/tests/online/clone.c @@ -3,7 +3,7 @@ #include "git2/clone.h" #include "git2/cred_helpers.h" #include "remote.h" -#include "fileops.h" +#include "futils.h" #include "refs.h" #define LIVE_REPO_URL "http://github.com/libgit2/TestGitRepository" diff --git a/tests/online/fetchhead.c b/tests/online/fetchhead.c index 7e9ca7e34..4f7be7e38 100644 --- a/tests/online/fetchhead.c +++ b/tests/online/fetchhead.c @@ -1,6 +1,6 @@ #include "clar_libgit2.h" -#include "fileops.h" +#include "futils.h" #include "fetchhead.h" #include "../fetchhead/fetchhead_data.h" #include "git2/clone.h" |
