From 225a9caf18911bffe2f32e4960c94e51f135182b Mon Sep 17 00:00:00 2001 From: Felipe Contreras Date: Sat, 21 Feb 2009 02:49:28 +0200 Subject: [PATCH] git config: don't allow extra arguments for -e or -l. As suggested by Johannes Schindelin. Signed-off-by: Felipe Contreras Signed-off-by: Junio C Hamano --- builtin-config.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/builtin-config.c b/builtin-config.c index 6dc205d1f..a3a334bc6 100644 --- a/builtin-config.c +++ b/builtin-config.c @@ -374,6 +374,7 @@ int cmd_config(int argc, const char **argv, const char *unused_prefix) } if (actions == ACTION_LIST) { + check_argc(argc, 0, 0); if (git_config(show_all_config, NULL) < 0) { if (config_exclusive_filename) die("unable to read config file %s: %s", @@ -383,6 +384,7 @@ int cmd_config(int argc, const char **argv, const char *unused_prefix) } } else if (actions == ACTION_EDIT) { + check_argc(argc, 0, 0); git_config(git_default_config, NULL); launch_editor(config_exclusive_filename ? config_exclusive_filename : git_path("config"), -- 2.43.2