send-pack: clarify that cmds_sent is a boolean
commitc67072b90bdc56501483e0ba96d0d833e86362c3
authorJunio C Hamano <gitster@pobox.com>
Tue, 19 Aug 2014 20:02:19 +0000 (19 13:02 -0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 15 Sep 2014 20:23:20 +0000 (15 13:23 -0700)
tree161ab8115d96d23e30941731abe59293511cc7be
parentb783aa71c096032c02a20f9a41c5f42ce7b914c4
send-pack: clarify that cmds_sent is a boolean

We use it to make sure that the feature request is sent only once on
the very first request packet (ignoring the "shallow " line, which
was an unfortunate mistake we cannot retroactively fix with existing
receive-pack already deployed in the field) and we set it to "true"
with cmds_sent++, not because we care about the actual number of
updates sent but because it is merely an idiomatic way.

Set it explicitly to one to clarify that the code that uses this
variable only cares about its zero-ness.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
send-pack.c