summaryrefslogtreecommitdiff
path: root/src/refs.c
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2012-10-31 20:52:16 +0100
committerVicent Marti <tanoku@gmail.com>2012-10-31 20:52:16 +0100
commit003808b38cd09dab8748f93bb44a0df9aca6820c (patch)
tree9ccd6e14c1990baac6f4ac05237f170d03142d61 /src/refs.c
parenta9db123b09e8af94d33cccf30c908701dd491fa7 (diff)
parentc1f61af66b35533ee8268e615de6ded74b2ce342 (diff)
downloadlibgit2-003808b38cd09dab8748f93bb44a0df9aca6820c.tar.gz
Merge branch 'config-refresh' into development
Diffstat (limited to 'src/refs.c')
-rw-r--r--src/refs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/refs.c b/src/refs.c
index 833f2fcc8..779d6080f 100644
--- a/src/refs.c
+++ b/src/refs.c
@@ -123,7 +123,8 @@ static int reference_read(
if (git_buf_joinpath(&path, repo_path, ref_name) < 0)
return -1;
- result = git_futils_readbuffer_updated(file_content, path.ptr, mtime, updated);
+ result = git_futils_readbuffer_updated(
+ file_content, path.ptr, mtime, NULL, updated);
git_buf_free(&path);
return result;