mirror of
https://github.com/git/git.git
synced 2024-11-24 18:33:43 +08:00
Merge branch 'nd/index-pack-error-message'
* nd/index-pack-error-message: index-pack: report error using the correct variable
This commit is contained in:
commit
0e8c09263e
@ -1291,7 +1291,7 @@ static void final(const char *final_pack_name, const char *curr_pack_name,
|
||||
if (keep_fd < 0) {
|
||||
if (errno != EEXIST)
|
||||
die_errno(_("cannot write keep file '%s'"),
|
||||
keep_name);
|
||||
keep_name ? keep_name : name);
|
||||
} else {
|
||||
if (keep_msg_len > 0) {
|
||||
write_or_die(keep_fd, keep_msg, keep_msg_len);
|
||||
@ -1299,7 +1299,7 @@ static void final(const char *final_pack_name, const char *curr_pack_name,
|
||||
}
|
||||
if (close(keep_fd) != 0)
|
||||
die_errno(_("cannot close written keep file '%s'"),
|
||||
keep_name);
|
||||
keep_name ? keep_name : name);
|
||||
report = "keep";
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user