Signed-off-by: Christian Couder <[email protected]>
---
builtin/apply.c | 9 +++++----
1 file changed, 5 insertions(+), 4 deletions(-)
diff --git a/builtin/apply.c b/builtin/apply.c
index ae734cf..0c2fa2e 100644
--- a/builtin/apply.c
+++ b/builtin/apply.c
@@ -58,6 +58,8 @@ struct apply_state {
int unidiff_zero;
int update_index;
+
+ int unsafe_paths;
};
/*
@@ -67,7 +69,6 @@ struct apply_state {
static int p_value = 1;
static int p_value_known;
static int apply = 1;
-static int unsafe_paths;
static const char *fake_ancestor;
static int line_termination = '\n';
static unsigned int p_context = UINT_MAX;
@@ -3844,7 +3845,7 @@ static int check_patch(struct apply_state *state, struct
patch *patch)
}
}
- if (!unsafe_paths)
+ if (!state->unsafe_paths)
die_on_unsafe_path(patch);
/*
@@ -4610,7 +4611,7 @@ int cmd_apply(int argc, const char **argv, const char
*prefix_)
N_("make sure the patch is applicable to the current
index")),
OPT_BOOL(0, "cached", &state.cached,
N_("apply a patch without touching the working tree")),
- OPT_BOOL(0, "unsafe-paths", &unsafe_paths,
+ OPT_BOOL(0, "unsafe-paths", &state.unsafe_paths,
N_("accept a patch that touches outside the working
area")),
OPT_BOOL(0, "apply", &force_apply,
N_("also apply the patch (use with
--stat/--summary/--check)")),
@@ -4688,7 +4689,7 @@ int cmd_apply(int argc, const char **argv, const char
*prefix_)
state.check_index = 1;
}
if (state.check_index)
- unsafe_paths = 0;
+ state.unsafe_paths = 0;
for (i = 0; i < argc; i++) {
const char *arg = argv[i];
--
2.8.0.rc1.49.gca61272
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to [email protected]
More majordomo info at http://vger.kernel.org/majordomo-info.html