@@ -48,6 +48,7 @@ static void wt_serialize_v1_header(struct wt_status *s, int fd)
4848 /* show_branch */
4949 /* show_stash */
5050 packet_write_fmt (fd , "hints %d\n" , s -> hints );
51+ /* ahead_behind_flags */
5152 packet_write_fmt (fd , "detect_rename %d\n" , s -> detect_rename );
5253 packet_write_fmt (fd , "rename_score %d\n" , s -> rename_score );
5354 packet_write_fmt (fd , "rename_limit %d\n" , s -> rename_limit );
@@ -78,10 +79,11 @@ static inline void wt_serialize_v1_changed(struct wt_status *s, int fd,
7879 int len_path , len_rename_source ;
7980
8081 trace_printf_key (& trace_serialize ,
81- "change: %d %d %d %d %o %o %o %d %d %s %s '%s' '%s'" ,
82+ "change: %d %d %d %d %d % o %o %o %d %d %s %s '%s' '%s'" ,
8283 d -> worktree_status ,
8384 d -> index_status ,
8485 d -> stagemask ,
86+ d -> rename_status ,
8587 d -> rename_score ,
8688 d -> mode_head ,
8789 d -> mode_index ,
@@ -96,6 +98,7 @@ static inline void wt_serialize_v1_changed(struct wt_status *s, int fd,
9698 sd .fixed .worktree_status = htonl (d -> worktree_status );
9799 sd .fixed .index_status = htonl (d -> index_status );
98100 sd .fixed .stagemask = htonl (d -> stagemask );
101+ sd .fixed .rename_status = htonl (d -> rename_status );
99102 sd .fixed .rename_score = htonl (d -> rename_score );
100103 sd .fixed .mode_head = htonl (d -> mode_head );
101104 sd .fixed .mode_index = htonl (d -> mode_index );
0 commit comments