Skip to content

Commit ba42d64

Browse files
committed
libgit2: Other FFI changes
1 parent b98c738 commit ba42d64

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Diff for: libgit2-sys/lib.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,8 @@ git_enum! {
198198
GIT_EINDEXDIRTY = -34,
199199
GIT_EAPPLYFAIL = -35,
200200
GIT_EOWNER = -36,
201+
GIT_TIMEOUT = -37,
202+
GIT_EUNCHANGED = -38,
201203
}
202204
}
203205

@@ -862,10 +864,11 @@ pub struct git_index_time {
862864
pub struct git_config_entry {
863865
pub name: *const c_char,
864866
pub value: *const c_char,
867+
pub backend_type: *const c_char,
868+
pub origin_path: *const c_char,
865869
pub include_depth: c_uint,
866870
pub level: git_config_level_t,
867871
pub free: Option<extern "C" fn(*mut git_config_entry)>,
868-
pub payload: *mut c_void,
869872
}
870873

871874
git_enum! {

0 commit comments

Comments
 (0)