Skip to content

Commit

Permalink
expire_reflog(): move verbose to flags argument
Browse files Browse the repository at this point in the history
The policy objects don't care about "--verbose". So move it to
expire_reflog()'s flags parameter.

Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Reviewed-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Michael Haggerty authored and Junio C Hamano committed Dec 12, 2014
1 parent 8c22dd3 commit bc11155
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions builtin/reflog.c
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ static unsigned long default_reflog_expire_unreachable;

enum expire_reflog_flags {
EXPIRE_REFLOGS_DRY_RUN = 1 << 0,
EXPIRE_REFLOGS_UPDATE_REF = 1 << 1
EXPIRE_REFLOGS_UPDATE_REF = 1 << 1,
EXPIRE_REFLOGS_VERBOSE = 1 << 2
};

struct cmd_reflog_expire_cb {
struct rev_info revs;
int stalefix;
int rewrite;
int verbose;
unsigned long expire_total;
unsigned long expire_unreachable;
int recno;
Expand Down Expand Up @@ -344,7 +344,7 @@ static int expire_reflog_ent(unsigned char *osha1, unsigned char *nsha1,
message, policy_cb)) {
if (!policy_cb->newlog)
printf("would prune %s", message);
else if (policy_cb->cmd->verbose)
else if (cb->flags & EXPIRE_REFLOGS_VERBOSE)
printf("prune %s", message);
} else {
if (policy_cb->newlog) {
Expand All @@ -356,7 +356,7 @@ static int expire_reflog_ent(unsigned char *osha1, unsigned char *nsha1,
message);
hashcpy(policy_cb->last_kept_sha1, nsha1);
}
if (policy_cb->cmd->verbose)
if (cb->flags & EXPIRE_REFLOGS_VERBOSE)
printf("keep %s", message);
}
return 0;
Expand Down Expand Up @@ -693,7 +693,7 @@ static int cmd_reflog_expire(int argc, const char **argv, const char *prefix)
else if (!strcmp(arg, "--all"))
do_all = 1;
else if (!strcmp(arg, "--verbose"))
cb.verbose = 1;
flags |= EXPIRE_REFLOGS_VERBOSE;
else if (!strcmp(arg, "--")) {
i++;
break;
Expand All @@ -711,10 +711,10 @@ static int cmd_reflog_expire(int argc, const char **argv, const char *prefix)
*/
if (cb.stalefix) {
init_revisions(&cb.revs, prefix);
if (cb.verbose)
if (flags & EXPIRE_REFLOGS_VERBOSE)
printf("Marking reachable objects...");
mark_reachable_objects(&cb.revs, 0, 0, NULL);
if (cb.verbose)
if (flags & EXPIRE_REFLOGS_VERBOSE)
putchar('\n');
}

Expand Down Expand Up @@ -773,7 +773,7 @@ static int cmd_reflog_delete(int argc, const char **argv, const char *prefix)
else if (!strcmp(arg, "--updateref"))
flags |= EXPIRE_REFLOGS_UPDATE_REF;
else if (!strcmp(arg, "--verbose"))
cb.verbose = 1;
flags |= EXPIRE_REFLOGS_VERBOSE;
else if (!strcmp(arg, "--")) {
i++;
break;
Expand Down

0 comments on commit bc11155

Please sign in to comment.