diff options
author | Carlos Martín Nieto <cmn@dwim.me> | 2014-01-24 11:36:41 +0100 |
---|---|---|
committer | Carlos Martín Nieto <cmn@dwim.me> | 2014-01-25 08:15:44 +0100 |
commit | d541170c77b7ac738e2ffcdd04c838fb7cbbfb87 (patch) | |
tree | b4c829668eb8a1aa8db798bfdd31e95bb1a946e0 /src/attr.c | |
parent | d0a3de720e085d335d9ad46dc00a23dd03eda793 (diff) | |
download | libgit2-d541170c77b7ac738e2ffcdd04c838fb7cbbfb87.tar.gz |
index: rename an entry's id to 'id'
This was not converted when we converted the rest, so do it now.
Diffstat (limited to 'src/attr.c')
-rw-r--r-- | src/attr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/attr.c b/src/attr.c index e6e274e42..ff4446e2f 100644 --- a/src/attr.c +++ b/src/attr.c @@ -314,10 +314,10 @@ static int load_attr_blob_from_index( entry = git_index_get_byindex(index, pos); - if (old_oid && git_oid__cmp(old_oid, &entry->oid) == 0) + if (old_oid && git_oid__cmp(old_oid, &entry->id) == 0) return GIT_ENOTFOUND; - if ((error = git_blob_lookup(blob, repo, &entry->oid)) < 0) + if ((error = git_blob_lookup(blob, repo, &entry->id)) < 0) return error; *content = git_blob_rawcontent(*blob); |