summaryrefslogtreecommitdiff
path: root/src/remote.h
diff options
context:
space:
mode:
authorCarlos Martín Nieto <cmn@dwim.me>2013-04-20 19:13:47 +0200
committerCarlos Martín Nieto <cmn@dwim.me>2013-04-20 19:45:40 +0200
commit1be680c4d0909ee5160292d7b56c4522c4bc309c (patch)
tree605d1eeee4933f727219d8c8d7fd8fd23a09c133 /src/remote.h
parentbc6374eac485ab9ad9cfd7165b6d071c3dcb673a (diff)
downloadlibgit2-1be680c4d0909ee5160292d7b56c4522c4bc309c.tar.gz
refspec: unify the string and parsed data
It used to be separate as an attempt to make the querying easier, but it didn't work out that way, so put all the data together. Add git_refspec_string() as well to get the original string, which is now stored alongside the independent parts.
Diffstat (limited to 'src/remote.h')
-rw-r--r--src/remote.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/remote.h b/src/remote.h
index b1f33f0e7..c9c26b77d 100644
--- a/src/remote.h
+++ b/src/remote.h
@@ -21,7 +21,6 @@ struct git_remote {
char *pushurl;
git_vector refs;
git_vector refspecs;
- git_vector refspec_strings;
git_cred_acquire_cb cred_acquire_cb;
void *cred_acquire_payload;
git_transport *transport;