Skip to content

Commit dfbfb9f

Browse files
ralfthgitster
authored andcommitted
fetch-pack.c: correct command at the beginning of an error message
One error message in fetch-pack.c uses 'git fetch_pack' at the beginning which is not a git command. Use 'git fetch-pack' instead. Signed-off-by: Ralf Thielow <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 0538b84 commit dfbfb9f

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)