Skip to content

Commit

Permalink
builtin-receive-pack.c: do not initialize statics to 0
Browse files Browse the repository at this point in the history
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Junio C Hamano committed Feb 11, 2009
1 parent 747ca24 commit 1b53a07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions builtin-receive-pack.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ enum deny_action {
DENY_REFUSE,
};

static int deny_deletes = 0;
static int deny_non_fast_forwards = 0;
static int deny_deletes;
static int deny_non_fast_forwards;
static enum deny_action deny_current_branch = DENY_UNCONFIGURED;
static enum deny_action deny_delete_current = DENY_UNCONFIGURED;
static int receive_fsck_objects;
Expand Down

0 comments on commit 1b53a07

Please sign in to comment.