use strbuf_addstr() for adding constant strings to a strbuf
authorRené Scharfe <l.s.r@web.de>
Sat, 30 Jul 2016 17:36:23 +0000 (19:36 +0200)
committerJunio C Hamano <gitster@pobox.com>
Mon, 1 Aug 2016 20:42:10 +0000 (13:42 -0700)
Replace uses of strbuf_addf() for adding strings with more lightweight
strbuf_addstr() calls.

In http-push.c it becomes easier to see what's going on without having
to verfiy that the definition of PROPFIND_ALL_REQUEST doesn't contain
any format specifiers.

Signed-off-by: Rene Scharfe <l.s.r@web.de>
Reviewed-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
No differences found