summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorVicent Marti <tanoku@gmail.com>2014-03-03 12:40:25 +0100
committerVicent Marti <tanoku@gmail.com>2014-03-03 12:40:25 +0100
commitebb3c506fd880a383ea66679865e16e24253cb3a (patch)
treebeaedbaefb17bafb280d74c22a758d8042a7eb42 /src
parent2491c416ed84fb575506b0b58fb234ab2daa24fb (diff)
downloadlibgit2-vmg/features.tar.gz
features: Rename `_HAS_` to `_FEATURE_`vmg/features
Diffstat (limited to 'src')
-rw-r--r--src/settings.c6
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
;
}