Skip to content

Commit 5fa9169

Browse files
committed
Merge branch 'dr/push-remote-ref-update'
Code clean-up. * dr/push-remote-ref-update: remote: drop "explicit" parameter from remote_ref_for_branch()
2 parents cdef998 + af8ccd8 commit 5fa9169

File tree

3 files changed

+5
-15
lines changed

3 files changed

+5
-15
lines changed

ref-filter.c

+2-4
Original file line numberDiff line numberDiff line change
@@ -1459,12 +1459,10 @@ static void fill_remote_ref_details(struct used_atom *atom, const char *refname,
14591459
remote_for_branch(branch, &explicit);
14601460
*s = xstrdup(explicit ? remote : "");
14611461
} else if (atom->u.remote_ref.option == RR_REMOTE_REF) {
1462-
int explicit;
14631462
const char *merge;
14641463

1465-
merge = remote_ref_for_branch(branch, atom->u.remote_ref.push,
1466-
&explicit);
1467-
*s = xstrdup(explicit ? merge : "");
1464+
merge = remote_ref_for_branch(branch, atom->u.remote_ref.push);
1465+
*s = xstrdup(merge ? merge : "");
14681466
} else
14691467
BUG("unhandled RR_* enum");
14701468
}

remote.c

+2-9
Original file line numberDiff line numberDiff line change
@@ -516,14 +516,11 @@ const char *pushremote_for_branch(struct branch *branch, int *explicit)
516516
return remote_for_branch(branch, explicit);
517517
}
518518

519-
const char *remote_ref_for_branch(struct branch *branch, int for_push,
520-
int *explicit)
519+
const char *remote_ref_for_branch(struct branch *branch, int for_push)
521520
{
522521
if (branch) {
523522
if (!for_push) {
524523
if (branch->merge_nr) {
525-
if (explicit)
526-
*explicit = 1;
527524
return branch->merge_name[0];
528525
}
529526
} else {
@@ -534,15 +531,11 @@ const char *remote_ref_for_branch(struct branch *branch, int for_push,
534531
if (remote && remote->push.nr &&
535532
(dst = apply_refspecs(&remote->push,
536533
branch->refname))) {
537-
if (explicit)
538-
*explicit = 1;
539534
return dst;
540535
}
541536
}
542537
}
543-
if (explicit)
544-
*explicit = 0;
545-
return "";
538+
return NULL;
546539
}
547540

548541
static struct remote *remote_get_1(const char *name,

remote.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -261,8 +261,7 @@ struct branch {
261261
struct branch *branch_get(const char *name);
262262
const char *remote_for_branch(struct branch *branch, int *explicit);
263263
const char *pushremote_for_branch(struct branch *branch, int *explicit);
264-
const char *remote_ref_for_branch(struct branch *branch, int for_push,
265-
int *explicit);
264+
const char *remote_ref_for_branch(struct branch *branch, int for_push);
266265

267266
/* returns true if the given branch has merge configuration given. */
268267
int branch_has_merge_config(struct branch *branch);

0 commit comments

Comments
 (0)