mirror of
https://github.com/git/git.git
synced 2025-01-19 14:04:07 +08:00
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 <ralf.thielow@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
parent
0538b84027
commit
dfbfb9f377
@ -240,7 +240,7 @@ static enum ack_type get_ack(int fd, unsigned char *result_sha1)
|
|||||||
return ACK;
|
return ACK;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
die(_("git fetch_pack: expected ACK/NAK, got '%s'"), line);
|
die(_("git fetch-pack: expected ACK/NAK, got '%s'"), line);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void send_request(struct fetch_pack_args *args,
|
static void send_request(struct fetch_pack_args *args,
|
||||||
|
Loading…
Reference in New Issue
Block a user