diff options
| author | Carlos Martín Nieto <cmn@dwim.me> | 2015-11-12 19:53:09 +0100 |
|---|---|---|
| committer | Carlos Martín Nieto <cmn@dwim.me> | 2015-11-12 19:53:09 +0100 |
| commit | 75a0ccf52fef2cab281de886730cda595d3736aa (patch) | |
| tree | 977b981aca588511e96f20dca4acec983d993a16 /include/git2/common.h | |
| parent | 2c26c8679ffc02b6644e20eba9458121b944beb6 (diff) | |
| parent | 28659e50d56bb79460c8a1d2315443267d6e6f66 (diff) | |
| download | libgit2-75a0ccf52fef2cab281de886730cda595d3736aa.tar.gz | |
Merge pull request #3170 from CmdrMoozy/nsec_fix
git_index_entry__init_from_stat: set nsec fields in entry stats
Diffstat (limited to 'include/git2/common.h')
| -rw-r--r-- | include/git2/common.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/git2/common.h b/include/git2/common.h index bf341e79f..e687977d5 100644 --- a/include/git2/common.h +++ b/include/git2/common.h @@ -101,8 +101,9 @@ GIT_EXTERN(void) git_libgit2_version(int *major, int *minor, int *rev); */ typedef enum { GIT_FEATURE_THREADS = (1 << 0), - GIT_FEATURE_HTTPS = (1 << 1), - GIT_FEATURE_SSH = (1 << 2), + GIT_FEATURE_HTTPS = (1 << 1), + GIT_FEATURE_SSH = (1 << 2), + GIT_FEATURE_NSEC = (1 << 3), } git_feature_t; /** |
