diff options
author | Ben Straub <bs@github.com> | 2012-11-27 14:13:03 -0800 |
---|---|---|
committer | Ben Straub <bs@github.com> | 2012-11-27 14:13:03 -0800 |
commit | f4a62c306d5e313fe80815369be47318ea29575b (patch) | |
tree | e1c524bc577dacb9ea8d4e9cb49a9497ca15cb51 /src/remote.h | |
parent | 1d8ec670be6252ae5af6ded5edd6017434de3ab2 (diff) | |
download | libgit2-f4a62c306d5e313fe80815369be47318ea29575b.tar.gz |
Typedef enums.
Diffstat (limited to 'src/remote.h')
-rw-r--r-- | src/remote.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/remote.h b/src/remote.h index 840c9a905..448a9e9a9 100644 --- a/src/remote.h +++ b/src/remote.h @@ -27,10 +27,10 @@ struct git_remote { git_repository *repo; git_remote_callbacks callbacks; git_transfer_progress stats; - unsigned int need_pack:1, - download_tags:2, /* There are four possible values */ - check_cert:1, - update_fetchhead:1; + unsigned int need_pack; + git_remote_autotag_option_t download_tags; + unsigned int check_cert; + unsigned int update_fetchhead; }; const char* git_remote__urlfordirection(struct git_remote *remote, int direction); |