10 #include "run-command.h"
13 static char default_wt_status_colors
[][COLOR_MAXLEN
] = {
14 GIT_COLOR_NORMAL
, /* WT_STATUS_HEADER */
15 GIT_COLOR_GREEN
, /* WT_STATUS_UPDATED */
16 GIT_COLOR_RED
, /* WT_STATUS_CHANGED */
17 GIT_COLOR_RED
, /* WT_STATUS_UNTRACKED */
18 GIT_COLOR_RED
, /* WT_STATUS_NOBRANCH */
19 GIT_COLOR_RED
, /* WT_STATUS_UNMERGED */
22 static const char *color(int slot
, struct wt_status
*s
)
24 return s
->use_color
> 0 ? s
->color_palette
[slot
] : "";
27 void wt_status_prepare(struct wt_status
*s
)
29 unsigned char sha1
[20];
32 memset(s
, 0, sizeof(*s
));
33 memcpy(s
->color_palette
, default_wt_status_colors
,
34 sizeof(default_wt_status_colors
));
35 s
->show_untracked_files
= SHOW_NORMAL_UNTRACKED_FILES
;
37 s
->relative_paths
= 1;
38 head
= resolve_ref("HEAD", sha1
, 0, NULL
);
39 s
->branch
= head
? xstrdup(head
) : NULL
;
40 s
->reference
= "HEAD";
42 s
->index_file
= get_index_file();
43 s
->change
.strdup_strings
= 1;
44 s
->untracked
.strdup_strings
= 1;
47 static void wt_status_print_unmerged_header(struct wt_status
*s
)
49 const char *c
= color(WT_STATUS_HEADER
, s
);
51 color_fprintf_ln(s
->fp
, c
, "# Unmerged paths:");
52 if (!advice_status_hints
)
56 else if (!s
->is_initial
)
57 color_fprintf_ln(s
->fp
, c
, "# (use \"git reset %s <file>...\" to unstage)", s
->reference
);
59 color_fprintf_ln(s
->fp
, c
, "# (use \"git rm --cached <file>...\" to unstage)");
60 color_fprintf_ln(s
->fp
, c
, "# (use \"git add/rm <file>...\" as appropriate to mark resolution)");
61 color_fprintf_ln(s
->fp
, c
, "#");
64 static void wt_status_print_cached_header(struct wt_status
*s
)
66 const char *c
= color(WT_STATUS_HEADER
, s
);
68 color_fprintf_ln(s
->fp
, c
, "# Changes to be committed:");
69 if (!advice_status_hints
)
72 ; /* NEEDSWORK: use "git reset --unresolve"??? */
73 else if (!s
->is_initial
)
74 color_fprintf_ln(s
->fp
, c
, "# (use \"git reset %s <file>...\" to unstage)", s
->reference
);
76 color_fprintf_ln(s
->fp
, c
, "# (use \"git rm --cached <file>...\" to unstage)");
77 color_fprintf_ln(s
->fp
, c
, "#");
80 static void wt_status_print_dirty_header(struct wt_status
*s
,
82 int has_dirty_submodules
)
84 const char *c
= color(WT_STATUS_HEADER
, s
);
86 color_fprintf_ln(s
->fp
, c
, "# Changed but not updated:");
87 if (!advice_status_hints
)
90 color_fprintf_ln(s
->fp
, c
, "# (use \"git add <file>...\" to update what will be committed)");
92 color_fprintf_ln(s
->fp
, c
, "# (use \"git add/rm <file>...\" to update what will be committed)");
93 color_fprintf_ln(s
->fp
, c
, "# (use \"git checkout -- <file>...\" to discard changes in working directory)");
94 if (has_dirty_submodules
)
95 color_fprintf_ln(s
->fp
, c
, "# (commit or discard the untracked or modified content in submodules)");
96 color_fprintf_ln(s
->fp
, c
, "#");
99 static void wt_status_print_untracked_header(struct wt_status
*s
)
101 const char *c
= color(WT_STATUS_HEADER
, s
);
102 color_fprintf_ln(s
->fp
, c
, "# Untracked files:");
103 if (!advice_status_hints
)
105 color_fprintf_ln(s
->fp
, c
, "# (use \"git add <file>...\" to include in what will be committed)");
106 color_fprintf_ln(s
->fp
, c
, "#");
109 static void wt_status_print_trailer(struct wt_status
*s
)
111 color_fprintf_ln(s
->fp
, color(WT_STATUS_HEADER
, s
), "#");
114 #define quote_path quote_path_relative
116 static void wt_status_print_unmerged_data(struct wt_status
*s
,
117 struct string_list_item
*it
)
119 const char *c
= color(WT_STATUS_UNMERGED
, s
);
120 struct wt_status_change_data
*d
= it
->util
;
121 struct strbuf onebuf
= STRBUF_INIT
;
122 const char *one
, *how
= "bug";
124 one
= quote_path(it
->string
, -1, &onebuf
, s
->prefix
);
125 color_fprintf(s
->fp
, color(WT_STATUS_HEADER
, s
), "#\t");
126 switch (d
->stagemask
) {
127 case 1: how
= "both deleted:"; break;
128 case 2: how
= "added by us:"; break;
129 case 3: how
= "deleted by them:"; break;
130 case 4: how
= "added by them:"; break;
131 case 5: how
= "deleted by us:"; break;
132 case 6: how
= "both added:"; break;
133 case 7: how
= "both modified:"; break;
135 color_fprintf(s
->fp
, c
, "%-20s%s\n", how
, one
);
136 strbuf_release(&onebuf
);
139 static void wt_status_print_change_data(struct wt_status
*s
,
141 struct string_list_item
*it
)
143 struct wt_status_change_data
*d
= it
->util
;
144 const char *c
= color(change_type
, s
);
148 const char *one
, *two
;
149 struct strbuf onebuf
= STRBUF_INIT
, twobuf
= STRBUF_INIT
;
150 struct strbuf extra
= STRBUF_INIT
;
152 one_name
= two_name
= it
->string
;
153 switch (change_type
) {
154 case WT_STATUS_UPDATED
:
155 status
= d
->index_status
;
157 one_name
= d
->head_path
;
159 case WT_STATUS_CHANGED
:
160 if (d
->new_submodule_commits
|| d
->dirty_submodule
) {
161 strbuf_addstr(&extra
, " (");
162 if (d
->new_submodule_commits
)
163 strbuf_addf(&extra
, "new commits, ");
164 if (d
->dirty_submodule
& DIRTY_SUBMODULE_MODIFIED
)
165 strbuf_addf(&extra
, "modified content, ");
166 if (d
->dirty_submodule
& DIRTY_SUBMODULE_UNTRACKED
)
167 strbuf_addf(&extra
, "untracked content, ");
168 strbuf_setlen(&extra
, extra
.len
- 2);
169 strbuf_addch(&extra
, ')');
171 status
= d
->worktree_status
;
175 one
= quote_path(one_name
, -1, &onebuf
, s
->prefix
);
176 two
= quote_path(two_name
, -1, &twobuf
, s
->prefix
);
178 color_fprintf(s
->fp
, color(WT_STATUS_HEADER
, s
), "#\t");
180 case DIFF_STATUS_ADDED
:
181 color_fprintf(s
->fp
, c
, "new file: %s", one
);
183 case DIFF_STATUS_COPIED
:
184 color_fprintf(s
->fp
, c
, "copied: %s -> %s", one
, two
);
186 case DIFF_STATUS_DELETED
:
187 color_fprintf(s
->fp
, c
, "deleted: %s", one
);
189 case DIFF_STATUS_MODIFIED
:
190 color_fprintf(s
->fp
, c
, "modified: %s", one
);
192 case DIFF_STATUS_RENAMED
:
193 color_fprintf(s
->fp
, c
, "renamed: %s -> %s", one
, two
);
195 case DIFF_STATUS_TYPE_CHANGED
:
196 color_fprintf(s
->fp
, c
, "typechange: %s", one
);
198 case DIFF_STATUS_UNKNOWN
:
199 color_fprintf(s
->fp
, c
, "unknown: %s", one
);
201 case DIFF_STATUS_UNMERGED
:
202 color_fprintf(s
->fp
, c
, "unmerged: %s", one
);
205 die("bug: unhandled diff status %c", status
);
208 color_fprintf(s
->fp
, color(WT_STATUS_HEADER
, s
), "%s", extra
.buf
);
209 strbuf_release(&extra
);
211 fprintf(s
->fp
, "\n");
212 strbuf_release(&onebuf
);
213 strbuf_release(&twobuf
);
216 static void wt_status_collect_changed_cb(struct diff_queue_struct
*q
,
217 struct diff_options
*options
,
220 struct wt_status
*s
= data
;
225 s
->workdir_dirty
= 1;
226 for (i
= 0; i
< q
->nr
; i
++) {
227 struct diff_filepair
*p
;
228 struct string_list_item
*it
;
229 struct wt_status_change_data
*d
;
232 it
= string_list_insert(p
->one
->path
, &s
->change
);
235 d
= xcalloc(1, sizeof(*d
));
238 if (!d
->worktree_status
)
239 d
->worktree_status
= p
->status
;
240 d
->dirty_submodule
= p
->two
->dirty_submodule
;
241 if (S_ISGITLINK(p
->two
->mode
))
242 d
->new_submodule_commits
= !!hashcmp(p
->one
->sha1
, p
->two
->sha1
);
246 static int unmerged_mask(const char *path
)
249 struct cache_entry
*ce
;
251 pos
= cache_name_pos(path
, strlen(path
));
257 while (pos
< active_nr
) {
258 ce
= active_cache
[pos
++];
259 if (strcmp(ce
->name
, path
) || !ce_stage(ce
))
261 mask
|= (1 << (ce_stage(ce
) - 1));
266 static void wt_status_collect_updated_cb(struct diff_queue_struct
*q
,
267 struct diff_options
*options
,
270 struct wt_status
*s
= data
;
273 for (i
= 0; i
< q
->nr
; i
++) {
274 struct diff_filepair
*p
;
275 struct string_list_item
*it
;
276 struct wt_status_change_data
*d
;
279 it
= string_list_insert(p
->two
->path
, &s
->change
);
282 d
= xcalloc(1, sizeof(*d
));
285 if (!d
->index_status
)
286 d
->index_status
= p
->status
;
288 case DIFF_STATUS_COPIED
:
289 case DIFF_STATUS_RENAMED
:
290 d
->head_path
= xstrdup(p
->one
->path
);
292 case DIFF_STATUS_UNMERGED
:
293 d
->stagemask
= unmerged_mask(p
->two
->path
);
299 static void wt_status_collect_changes_worktree(struct wt_status
*s
)
303 init_revisions(&rev
, NULL
);
304 setup_revisions(0, NULL
, &rev
, NULL
);
305 rev
.diffopt
.output_format
|= DIFF_FORMAT_CALLBACK
;
306 DIFF_OPT_SET(&rev
.diffopt
, DIRTY_SUBMODULES
);
307 rev
.diffopt
.format_callback
= wt_status_collect_changed_cb
;
308 rev
.diffopt
.format_callback_data
= s
;
309 rev
.prune_data
= s
->pathspec
;
310 run_diff_files(&rev
, 0);
313 static void wt_status_collect_changes_index(struct wt_status
*s
)
317 init_revisions(&rev
, NULL
);
318 setup_revisions(0, NULL
, &rev
,
319 s
->is_initial
? EMPTY_TREE_SHA1_HEX
: s
->reference
);
320 rev
.diffopt
.output_format
|= DIFF_FORMAT_CALLBACK
;
321 rev
.diffopt
.format_callback
= wt_status_collect_updated_cb
;
322 rev
.diffopt
.format_callback_data
= s
;
323 rev
.diffopt
.detect_rename
= 1;
324 rev
.diffopt
.rename_limit
= 200;
325 rev
.diffopt
.break_opt
= 0;
326 rev
.prune_data
= s
->pathspec
;
327 run_diff_index(&rev
, 1);
330 static void wt_status_collect_changes_initial(struct wt_status
*s
)
334 for (i
= 0; i
< active_nr
; i
++) {
335 struct string_list_item
*it
;
336 struct wt_status_change_data
*d
;
337 struct cache_entry
*ce
= active_cache
[i
];
339 if (!ce_path_match(ce
, s
->pathspec
))
341 it
= string_list_insert(ce
->name
, &s
->change
);
344 d
= xcalloc(1, sizeof(*d
));
348 d
->index_status
= DIFF_STATUS_UNMERGED
;
349 d
->stagemask
|= (1 << (ce_stage(ce
) - 1));
352 d
->index_status
= DIFF_STATUS_ADDED
;
356 static void wt_status_collect_untracked(struct wt_status
*s
)
359 struct dir_struct dir
;
361 if (!s
->show_untracked_files
)
363 memset(&dir
, 0, sizeof(dir
));
364 if (s
->show_untracked_files
!= SHOW_ALL_UNTRACKED_FILES
)
366 DIR_SHOW_OTHER_DIRECTORIES
| DIR_HIDE_EMPTY_DIRECTORIES
;
367 setup_standard_excludes(&dir
);
369 fill_directory(&dir
, s
->pathspec
);
370 for (i
= 0; i
< dir
.nr
; i
++) {
371 struct dir_entry
*ent
= dir
.entries
[i
];
372 if (!cache_name_is_other(ent
->name
, ent
->len
))
374 if (!match_pathspec(s
->pathspec
, ent
->name
, ent
->len
, 0, NULL
))
376 s
->workdir_untracked
= 1;
377 string_list_insert(ent
->name
, &s
->untracked
);
381 void wt_status_collect(struct wt_status
*s
)
383 wt_status_collect_changes_worktree(s
);
386 wt_status_collect_changes_initial(s
);
388 wt_status_collect_changes_index(s
);
389 wt_status_collect_untracked(s
);
392 static void wt_status_print_unmerged(struct wt_status
*s
)
394 int shown_header
= 0;
397 for (i
= 0; i
< s
->change
.nr
; i
++) {
398 struct wt_status_change_data
*d
;
399 struct string_list_item
*it
;
400 it
= &(s
->change
.items
[i
]);
405 wt_status_print_unmerged_header(s
);
408 wt_status_print_unmerged_data(s
, it
);
411 wt_status_print_trailer(s
);
415 static void wt_status_print_updated(struct wt_status
*s
)
417 int shown_header
= 0;
420 for (i
= 0; i
< s
->change
.nr
; i
++) {
421 struct wt_status_change_data
*d
;
422 struct string_list_item
*it
;
423 it
= &(s
->change
.items
[i
]);
425 if (!d
->index_status
||
426 d
->index_status
== DIFF_STATUS_UNMERGED
)
429 wt_status_print_cached_header(s
);
433 wt_status_print_change_data(s
, WT_STATUS_UPDATED
, it
);
436 wt_status_print_trailer(s
);
442 * 1 : some change but no delete
444 static int wt_status_check_worktree_changes(struct wt_status
*s
,
445 int *dirty_submodules
)
450 *dirty_submodules
= 0;
452 for (i
= 0; i
< s
->change
.nr
; i
++) {
453 struct wt_status_change_data
*d
;
454 d
= s
->change
.items
[i
].util
;
455 if (!d
->worktree_status
||
456 d
->worktree_status
== DIFF_STATUS_UNMERGED
)
460 if (d
->dirty_submodule
)
461 *dirty_submodules
= 1;
462 if (d
->worktree_status
== DIFF_STATUS_DELETED
)
468 static void wt_status_print_changed(struct wt_status
*s
)
470 int i
, dirty_submodules
;
471 int worktree_changes
= wt_status_check_worktree_changes(s
, &dirty_submodules
);
473 if (!worktree_changes
)
476 wt_status_print_dirty_header(s
, worktree_changes
< 0, dirty_submodules
);
478 for (i
= 0; i
< s
->change
.nr
; i
++) {
479 struct wt_status_change_data
*d
;
480 struct string_list_item
*it
;
481 it
= &(s
->change
.items
[i
]);
483 if (!d
->worktree_status
||
484 d
->worktree_status
== DIFF_STATUS_UNMERGED
)
486 wt_status_print_change_data(s
, WT_STATUS_CHANGED
, it
);
488 wt_status_print_trailer(s
);
491 static void wt_status_print_submodule_summary(struct wt_status
*s
, int uncommitted
)
493 struct child_process sm_summary
;
494 char summary_limit
[64];
495 char index
[PATH_MAX
];
496 const char *env
[] = { index
, NULL
};
497 const char *argv
[] = {
500 uncommitted
? "--files" : "--cached",
504 uncommitted
? NULL
: (s
->amend
? "HEAD^" : "HEAD"),
508 sprintf(summary_limit
, "%d", s
->submodule_summary
);
509 snprintf(index
, sizeof(index
), "GIT_INDEX_FILE=%s", s
->index_file
);
511 memset(&sm_summary
, 0, sizeof(sm_summary
));
512 sm_summary
.argv
= argv
;
513 sm_summary
.env
= env
;
514 sm_summary
.git_cmd
= 1;
515 sm_summary
.no_stdin
= 1;
517 sm_summary
.out
= dup(fileno(s
->fp
)); /* run_command closes it */
518 run_command(&sm_summary
);
521 static void wt_status_print_untracked(struct wt_status
*s
)
524 struct strbuf buf
= STRBUF_INIT
;
526 if (!s
->untracked
.nr
)
529 wt_status_print_untracked_header(s
);
530 for (i
= 0; i
< s
->untracked
.nr
; i
++) {
531 struct string_list_item
*it
;
532 it
= &(s
->untracked
.items
[i
]);
533 color_fprintf(s
->fp
, color(WT_STATUS_HEADER
, s
), "#\t");
534 color_fprintf_ln(s
->fp
, color(WT_STATUS_UNTRACKED
, s
), "%s",
535 quote_path(it
->string
, strlen(it
->string
),
538 strbuf_release(&buf
);
541 static void wt_status_print_verbose(struct wt_status
*s
)
545 init_revisions(&rev
, NULL
);
546 DIFF_OPT_SET(&rev
.diffopt
, ALLOW_TEXTCONV
);
547 setup_revisions(0, NULL
, &rev
,
548 s
->is_initial
? EMPTY_TREE_SHA1_HEX
: s
->reference
);
549 rev
.diffopt
.output_format
|= DIFF_FORMAT_PATCH
;
550 rev
.diffopt
.detect_rename
= 1;
551 rev
.diffopt
.file
= s
->fp
;
552 rev
.diffopt
.close_file
= 0;
554 * If we're not going to stdout, then we definitely don't
555 * want color, since we are going to the commit message
556 * file (and even the "auto" setting won't work, since it
557 * will have checked isatty on stdout).
560 DIFF_OPT_CLR(&rev
.diffopt
, COLOR_DIFF
);
561 run_diff_index(&rev
, 1);
564 static void wt_status_print_tracking(struct wt_status
*s
)
566 struct strbuf sb
= STRBUF_INIT
;
568 struct branch
*branch
;
570 assert(s
->branch
&& !s
->is_initial
);
571 if (prefixcmp(s
->branch
, "refs/heads/"))
573 branch
= branch_get(s
->branch
+ 11);
574 if (!format_tracking_info(branch
, &sb
))
577 for (cp
= sb
.buf
; (ep
= strchr(cp
, '\n')) != NULL
; cp
= ep
+ 1)
578 color_fprintf_ln(s
->fp
, color(WT_STATUS_HEADER
, s
),
579 "# %.*s", (int)(ep
- cp
), cp
);
580 color_fprintf_ln(s
->fp
, color(WT_STATUS_HEADER
, s
), "#");
583 void wt_status_print(struct wt_status
*s
)
585 const char *branch_color
= color(WT_STATUS_HEADER
, s
);
588 const char *on_what
= "On branch ";
589 const char *branch_name
= s
->branch
;
590 if (!prefixcmp(branch_name
, "refs/heads/"))
592 else if (!strcmp(branch_name
, "HEAD")) {
594 branch_color
= color(WT_STATUS_NOBRANCH
, s
);
595 on_what
= "Not currently on any branch.";
597 color_fprintf(s
->fp
, color(WT_STATUS_HEADER
, s
), "# ");
598 color_fprintf_ln(s
->fp
, branch_color
, "%s%s", on_what
, branch_name
);
600 wt_status_print_tracking(s
);
604 color_fprintf_ln(s
->fp
, color(WT_STATUS_HEADER
, s
), "#");
605 color_fprintf_ln(s
->fp
, color(WT_STATUS_HEADER
, s
), "# Initial commit");
606 color_fprintf_ln(s
->fp
, color(WT_STATUS_HEADER
, s
), "#");
609 wt_status_print_updated(s
);
610 wt_status_print_unmerged(s
);
611 wt_status_print_changed(s
);
612 if (s
->submodule_summary
) {
613 wt_status_print_submodule_summary(s
, 0); /* staged */
614 wt_status_print_submodule_summary(s
, 1); /* unstaged */
616 if (s
->show_untracked_files
)
617 wt_status_print_untracked(s
);
618 else if (s
->commitable
)
619 fprintf(s
->fp
, "# Untracked files not listed (use -u option to show untracked files)\n");
622 wt_status_print_verbose(s
);
623 if (!s
->commitable
) {
625 fprintf(s
->fp
, "# No changes\n");
628 else if (s
->workdir_dirty
)
629 printf("no changes added to commit (use \"git add\" and/or \"git commit -a\")\n");
630 else if (s
->untracked
.nr
)
631 printf("nothing added to commit but untracked files present (use \"git add\" to track)\n");
632 else if (s
->is_initial
)
633 printf("nothing to commit (create/copy files and use \"git add\" to track)\n");
634 else if (!s
->show_untracked_files
)
635 printf("nothing to commit (use -u to show untracked files)\n");
637 printf("nothing to commit (working directory clean)\n");
641 static void wt_shortstatus_unmerged(int null_termination
, struct string_list_item
*it
,
644 struct wt_status_change_data
*d
= it
->util
;
645 const char *how
= "??";
647 switch (d
->stagemask
) {
648 case 1: how
= "DD"; break; /* both deleted */
649 case 2: how
= "AU"; break; /* added by us */
650 case 3: how
= "UD"; break; /* deleted by them */
651 case 4: how
= "UA"; break; /* added by them */
652 case 5: how
= "DU"; break; /* deleted by us */
653 case 6: how
= "AA"; break; /* both added */
654 case 7: how
= "UU"; break; /* both modified */
656 color_fprintf(s
->fp
, color(WT_STATUS_UNMERGED
, s
), "%s", how
);
657 if (null_termination
) {
658 fprintf(stdout
, " %s%c", it
->string
, 0);
660 struct strbuf onebuf
= STRBUF_INIT
;
662 one
= quote_path(it
->string
, -1, &onebuf
, s
->prefix
);
663 printf(" %s\n", one
);
664 strbuf_release(&onebuf
);
668 static void wt_shortstatus_status(int null_termination
, struct string_list_item
*it
,
671 struct wt_status_change_data
*d
= it
->util
;
674 color_fprintf(s
->fp
, color(WT_STATUS_UPDATED
, s
), "%c", d
->index_status
);
677 if (d
->worktree_status
)
678 color_fprintf(s
->fp
, color(WT_STATUS_CHANGED
, s
), "%c", d
->worktree_status
);
682 if (null_termination
) {
683 fprintf(stdout
, "%s%c", it
->string
, 0);
685 fprintf(stdout
, "%s%c", d
->head_path
, 0);
687 struct strbuf onebuf
= STRBUF_INIT
;
690 one
= quote_path(d
->head_path
, -1, &onebuf
, s
->prefix
);
691 printf("%s -> ", one
);
692 strbuf_release(&onebuf
);
694 one
= quote_path(it
->string
, -1, &onebuf
, s
->prefix
);
696 strbuf_release(&onebuf
);
700 static void wt_shortstatus_untracked(int null_termination
, struct string_list_item
*it
,
703 if (null_termination
) {
704 fprintf(stdout
, "?? %s%c", it
->string
, 0);
706 struct strbuf onebuf
= STRBUF_INIT
;
708 one
= quote_path(it
->string
, -1, &onebuf
, s
->prefix
);
709 color_fprintf(s
->fp
, color(WT_STATUS_UNTRACKED
, s
), "??");
710 printf(" %s\n", one
);
711 strbuf_release(&onebuf
);
715 void wt_shortstatus_print(struct wt_status
*s
, int null_termination
)
718 for (i
= 0; i
< s
->change
.nr
; i
++) {
719 struct wt_status_change_data
*d
;
720 struct string_list_item
*it
;
722 it
= &(s
->change
.items
[i
]);
725 wt_shortstatus_unmerged(null_termination
, it
, s
);
727 wt_shortstatus_status(null_termination
, it
, s
);
729 for (i
= 0; i
< s
->untracked
.nr
; i
++) {
730 struct string_list_item
*it
;
732 it
= &(s
->untracked
.items
[i
]);
733 wt_shortstatus_untracked(null_termination
, it
, s
);
737 void wt_porcelain_print(struct wt_status
*s
, int null_termination
)
740 s
->relative_paths
= 0;
742 wt_shortstatus_print(s
, null_termination
);