Skip to content

Commit 3718117

Browse files
committed
Merge branch 'rt/fetch-pack-error-message-fix'
An error message in fetch-pack executable that was newly marked for translation was misspelt, which has been fixed. * rt/fetch-pack-error-message-fix: fetch-pack.c: correct command at the beginning of an error message
2 parents 12133d5 + dfbfb9f commit 3718117

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fetch-pack.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ static enum ack_type get_ack(int fd, unsigned char *result_sha1)
240240
return ACK;
241241
}
242242
}
243-
die(_("git fetch_pack: expected ACK/NAK, got '%s'"), line);
243+
die(_("git fetch-pack: expected ACK/NAK, got '%s'"), line);
244244
}
245245

246246
static void send_request(struct fetch_pack_args *args,

0 commit comments

Comments
 (0)