Skip to content

Commit

Permalink
fetch-pack.c: correct command at the beginning of an error message
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
ralfth authored and gitster committed Nov 11, 2016
1 parent 0538b84 commit dfbfb9f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion fetch-pack.c
Expand Up @@ -240,7 +240,7 @@ static enum ack_type get_ack(int fd, unsigned char *result_sha1)
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,
Expand Down

0 comments on commit dfbfb9f

Please sign in to comment.