summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: dfb068b)
raw | patch | inline | side by side (parent: dfb068b)
author | Christian Couder <chriscool@tuxfamily.org> | |
Sat, 16 Feb 2008 05:02:17 +0000 (06:02 +0100) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Sat, 16 Feb 2008 05:24:54 +0000 (21:24 -0800) |
Also use "git_config_string" to simplify code where "cmd" is set.
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
diff.c | patch | blob | history |
index ed41ce418ee88894f9a3870a1c59eef8ee7baf31..f082f55bc524dae92c8d57fe0dc9e9c8e3f2d59a 100644 (file)
--- a/diff.c
+++ b/diff.c
static struct ll_diff_driver {
const char *name;
struct ll_diff_driver *next;
- char *cmd;
+ const char *cmd;
} *user_diff, **user_diff_tail;
/*
user_diff_tail = &(drv->next);
}
- if (!value)
- return config_error_nonbool(var);
- drv->cmd = xstrdup(value);
- return 0;
+ return git_config_string(&(drv->cmd), var, value);
}
/*