summaryrefslogtreecommitdiff
path: root/src/iterator.h
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2017-12-30 00:12:46 +0000
committerEdward Thomson <ethomson@edwardthomson.com>2017-12-30 00:12:46 +0000
commit9e94b6af2fccd522de55d67074e62b726028ac4a (patch)
tree14e97286cb8759e80c4fd6c699fe1f9cf124d1a9 /src/iterator.h
parente9628e7b8d4f19a12a1cc98306c973e36c20f29c (diff)
downloadlibgit2-9e94b6af2fccd522de55d67074e62b726028ac4a.tar.gz
iterator: cleanups with symlink dir handling
Perform some error checking when examining symlink directories.
Diffstat (limited to 'src/iterator.h')
-rw-r--r--src/iterator.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/iterator.h b/src/iterator.h
index cde35cc62..a6497d87b 100644
--- a/src/iterator.h
+++ b/src/iterator.h
@@ -39,8 +39,8 @@ typedef enum {
GIT_ITERATOR_DONT_PRECOMPOSE_UNICODE = (1u << 5),
/** include conflicts */
GIT_ITERATOR_INCLUDE_CONFLICTS = (1u << 6),
- /** descend into symlinked directories when looking for references */
- GIT_ITERATOR_INCLUDE_SYMLINK_REFSDIR = (1u << 7),
+ /** descend into symlinked directories */
+ GIT_ITERATOR_DESCEND_SYMLINKS = (1u << 7),
} git_iterator_flag_t;
typedef enum {