Skip to content

Commit b766291

Browse files
committed
libgit2-sys: Update struct representation for git_config_entry
1 parent 3433353 commit b766291

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

libgit2-sys/lib.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -862,10 +862,11 @@ pub struct git_index_time {
862862
pub struct git_config_entry {
863863
pub name: *const c_char,
864864
pub value: *const c_char,
865+
pub backend_type: *const c_char,
866+
pub origin_path: *const c_char,
865867
pub include_depth: c_uint,
866868
pub level: git_config_level_t,
867869
pub free: Option<extern "C" fn(*mut git_config_entry)>,
868-
pub payload: *mut c_void,
869870
}
870871

871872
git_enum! {

0 commit comments

Comments
 (0)