From 35d33014fb897cac24f2ae42d8a2d9e005938bd9 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Wed, 12 Jan 2011 12:06:06 -0600 Subject: Add is_clone flag to available commands This will be used to make these operations configurable via a config option. Signed-off-by: Dan McGee Signed-off-by: Lars Hjemli --- cmd.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'cmd.h') diff --git a/cmd.h b/cmd.h index 8dc01bd..eb5bc87 100644 --- a/cmd.h +++ b/cmd.h @@ -8,7 +8,8 @@ struct cgit_cmd { cgit_cmd_fn fn; unsigned int want_repo:1, want_layout:1, - want_vpath:1; + want_vpath:1, + is_clone:1; }; extern struct cgit_cmd *cgit_get_cmd(struct cgit_context *ctx); -- cgit v1.2.3-59-g8ed1b