Browse Source

transport-helper: trivial code shuffle

Just shuffle the die() part to make it more explicit, and cleanup the
code-style.

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
maint
Felipe Contreras 12 years ago committed by Junio C Hamano
parent
commit
9c51558cfb
  1. 8
      transport-helper.c

8
transport-helper.c

@ -800,6 +800,9 @@ static int push_refs_with_export(struct transport *transport, @@ -800,6 +800,9 @@ static int push_refs_with_export(struct transport *transport,
char *private;
unsigned char sha1[20];

if (ref->deletion)
die("remote-helpers do not support ref deletion");

private = apply_refspecs(data->refspecs, data->refspec_nr, ref->name);
if (private && !get_sha1(private, sha1)) {
strbuf_addf(&buf, "^%s", private);
@ -808,13 +811,8 @@ static int push_refs_with_export(struct transport *transport, @@ -808,13 +811,8 @@ static int push_refs_with_export(struct transport *transport,
}
free(private);

if (ref->deletion) {
die("remote-helpers do not support ref deletion");
}

if (ref->peer_ref)
string_list_append(&revlist_args, ref->peer_ref->name);

}

if (get_exporter(transport, &exporter, &revlist_args))

Loading…
Cancel
Save