fetch: rename file-scope global "transport" to "gtransport"
commitaf23445925464b74b5f038271b6cfeaeb217481f
authorJunio C Hamano <gitster@pobox.com>
Wed, 7 Aug 2013 22:38:45 +0000 (7 15:38 -0700)
committerJunio C Hamano <gitster@pobox.com>
Wed, 7 Aug 2013 23:24:30 +0000 (7 16:24 -0700)
treefe25e3979adba9d9f69b56385e6703b8e5de303a
parentb9ccf55e064e2fc7df9773850ba7a23e2abf4ca7
fetch: rename file-scope global "transport" to "gtransport"

Although many functions in this file take a "struct transport" as a
parameter, "fetch_one()" assigns to the global singleton instance
which is a file-scope static, in order to allow a parameterless
signal handler unlock_pack() to access it.

Rename the variable to gtransport to make sure these uses stand out.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/fetch.c