]> git.ipfire.org Git - thirdparty/git.git/commit - transport.c
pass transport verbosity down to git_connect
authorEric Wong <normalperson@yhbt.net>
Thu, 28 Jan 2016 22:51:23 +0000 (22:51 +0000)
committerJunio C Hamano <gitster@pobox.com>
Thu, 28 Jan 2016 23:43:08 +0000 (15:43 -0800)
commitf3ee9ca53bc04e9770747ea58951135d60b11a8d
treefe1a12b8e6bd3d366e0e666be9e5525c6aedee42
parent1b0b6dd0720572dcf90c264aeb91f96a017b0f25
pass transport verbosity down to git_connect

While working in connect.c to perform non-blocking connections,
I noticed calling "git fetch -v" was not causing the progress
messages inside git_tcp_connect_sock to be emitted as I
expected.

Looking at history, it seems connect_setup has never been called
with the verbose parameter.  Since transport already has a
"verbose" field, use that field instead of another parameter
in connect_setup.

Signed-off-by: Eric Wong <normalperson@yhbt.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
transport.c