remote-curl: use error instead of fprintf(stderr)
commitb725b270d1474819d46161909416ef73ba2170ff
authorJeff King <peff@peff.net>
Wed, 9 Jul 2014 21:47:05 +0000 (9 17:47 -0400)
committerJunio C Hamano <gitster@pobox.com>
Thu, 10 Jul 2014 17:53:47 +0000 (10 10:53 -0700)
tree6d1e247e7f6ebe707a4b27c3ad6facbf041b4974
parent37943e4c3867323593699d5458d2d7925fdf32fc
remote-curl: use error instead of fprintf(stderr)

We usually prefix our error messages with "error: ", but
many error messages from remote-curl are simply printed with
fprintf. This can make the output a little harder to read
(especially because such message may be intermingled with
errors from the parent git process).

There is no reason to avoid error(), as we are already
calling it many places (in addition to libgit.a functions
which use it).

While we're adjusting the messages, we can also drop the
capitalization which makes them unlike other git error
messages.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
remote-curl.c