diff options
author | Vicent Marti <tanoku@gmail.com> | 2014-03-03 12:40:25 +0100 |
---|---|---|
committer | Vicent Marti <tanoku@gmail.com> | 2014-03-03 12:40:25 +0100 |
commit | ebb3c506fd880a383ea66679865e16e24253cb3a (patch) | |
tree | beaedbaefb17bafb280d74c22a758d8042a7eb42 /src/settings.c | |
parent | 2491c416ed84fb575506b0b58fb234ab2daa24fb (diff) | |
download | libgit2-vmg/features.tar.gz |
features: Rename `_HAS_` to `_FEATURE_`vmg/features
Diffstat (limited to 'src/settings.c')
-rw-r--r-- | src/settings.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/settings.c b/src/settings.c index 644e71cca..9308f94ec 100644 --- a/src/settings.c +++ b/src/settings.c @@ -21,13 +21,13 @@ int git_libgit2_features() { return 0 #ifdef GIT_THREADS - | GIT_HAS_THREADS + | GIT_FEATURE_THREADS #endif #if defined(GIT_SSL) || defined(GIT_WINHTTP) - | GIT_HAS_HTTPS + | GIT_FEATURE_HTTPS #endif #if defined(GIT_SSH) - | GIT_HAS_SSH + | GIT_FEATURE_SSH #endif ; } |