@@ -175,7 +175,7 @@ static VALUE rb_git_submodule_status(VALUE self)
175
175
176
176
rugged_exception_check (
177
177
git_submodule_status (& flags , repo , git_submodule_name (submodule ),
178
- GIT_SUBMODULE_IGNORE_FALLBACK )
178
+ GIT_SUBMODULE_IGNORE_UNSPECIFIED )
179
179
);
180
180
181
181
return submodule_status_flags_to_rb (flags );
@@ -245,7 +245,7 @@ static VALUE rb_git_submodule_status_in_workdir(VALUE self)
245
245
Data_Get_Struct(self, git_submodule, submodule); \
246
246
rugged_exception_check( \
247
247
git_submodule_status(&flags, repo, git_submodule_name(submodule), \
248
- GIT_SUBMODULE_IGNORE_FALLBACK ) \
248
+ GIT_SUBMODULE_IGNORE_UNSPECIFIED ) \
249
249
); \
250
250
return (flags & flag) ? Qtrue : Qfalse; \
251
251
@@ -369,7 +369,7 @@ static VALUE rb_git_submodule_status_untracked_files_in_workdir(VALUE self)
369
369
Data_Get_Struct(self, git_submodule, submodule); \
370
370
rugged_exception_check( \
371
371
git_submodule_status(&flags, repo, git_submodule_name(submodule), \
372
- GIT_SUBMODULE_IGNORE_FALLBACK ) \
372
+ GIT_SUBMODULE_IGNORE_UNSPECIFIED ) \
373
373
); \
374
374
return check(flags) ? Qtrue : Qfalse; \
375
375
0 commit comments