aboutsummaryrefslogtreecommitdiff
path: root/ident.c
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2007-02-04 17:50:14 -0800
committerJunio C Hamano <junkio@cox.net>2007-02-04 17:50:14 -0800
commit798123af21e1660cb606ab730ce721f354957719 (patch)
treeb0700e081bc3463a59c0ed17daa359f118571874 /ident.c
parent11dbe9e88016f3894eda79c7437f6c3bf79e155e (diff)
downloadgit-798123af21e1660cb606ab730ce721f354957719.tar.gz
git-798123af21e1660cb606ab730ce721f354957719.tar.xz
Rename get_ident() to fmt_ident() and make it available to outside
This makes the functionality of ident.c::get_ident() available to other callers. Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'ident.c')
-rw-r--r--ident.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/ident.c b/ident.c
index a6fc7b5e1..bb03bddd3 100644
--- a/ident.c
+++ b/ident.c
@@ -185,8 +185,8 @@ static const char *env_hint =
"Add --global to set your account\'s default\n"
"\n";
-static const char *get_ident(const char *name, const char *email,
- const char *date_str, int error_on_no_name)
+const char *fmt_ident(const char *name, const char *email,
+ const char *date_str, int error_on_no_name)
{
static char buffer[1000];
char date[50];
@@ -233,7 +233,7 @@ static const char *get_ident(const char *name, const char *email,
const char *git_author_info(int error_on_no_name)
{
- return get_ident(getenv("GIT_AUTHOR_NAME"),
+ return fmt_ident(getenv("GIT_AUTHOR_NAME"),
getenv("GIT_AUTHOR_EMAIL"),
getenv("GIT_AUTHOR_DATE"),
error_on_no_name);
@@ -241,7 +241,7 @@ const char *git_author_info(int error_on_no_name)
const char *git_committer_info(int error_on_no_name)
{
- return get_ident(getenv("GIT_COMMITTER_NAME"),
+ return fmt_ident(getenv("GIT_COMMITTER_NAME"),
getenv("GIT_COMMITTER_EMAIL"),
getenv("GIT_COMMITTER_DATE"),
error_on_no_name);