Simplify cases where a strbuf_reset is immediately followed by a strbuf_add by using strbuf_set operations. Signed-off-by: Jeremiah Mahler <jmmahler@xxxxxxxxx> --- http-backend.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/http-backend.c b/http-backend.c index d2c0a62..25c7435 100644 --- a/http-backend.c +++ b/http-backend.c @@ -489,14 +489,12 @@ static void service_rpc(char *service_name) struct rpc_service *svc = select_service(service_name); struct strbuf buf = STRBUF_INIT; - strbuf_reset(&buf); - strbuf_addf(&buf, "application/x-git-%s-request", svc->name); + strbuf_setf(&buf, "application/x-git-%s-request", svc->name); check_content_type(buf.buf); hdr_nocache(); - strbuf_reset(&buf); - strbuf_addf(&buf, "application/x-git-%s-result", svc->name); + strbuf_setf(&buf, "application/x-git-%s-result", svc->name); hdr_str(content_type, buf.buf); end_headers(); -- 2.0.0.592.gf55b190 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html