X-Git-Url: https://git.octo.it/?a=blobdiff_plain;f=ident.c;h=ac1c27f1998b8245132dced5875e022fe24b93ec;hb=e6c310fd0d7384973efc6b1d5999a5e8a5b2f3bd;hp=1bfbc6ff350baf61c15debf5bba45c0669ec107d;hpb=29504118f8528f658fd0bfc02d8d78d4c01dc2cc;p=git.git diff --git a/ident.c b/ident.c index 1bfbc6ff..ac1c27f1 100644 --- a/ident.c +++ b/ident.c @@ -8,7 +8,7 @@ #include "cache.h" #include -#include +#include static char git_default_date[50]; @@ -65,9 +65,16 @@ int setup_ident(void) git_default_email[len++] = '@'; gethostname(git_default_email + len, sizeof(git_default_email) - len); if (!strchr(git_default_email+len, '.')) { + struct hostent *he = gethostbyname(git_default_email + len); + char *domainname; + len = strlen(git_default_email); git_default_email[len++] = '.'; - getdomainname(git_default_email+len, sizeof(git_default_email)-len); + if (he && (domainname = strchr(he->h_name, '.'))) + strncpy(git_default_email + len, domainname + 1, sizeof(git_default_email) - len); + else + strncpy(git_default_email + len, "(none)", sizeof(git_default_email) - len); + git_default_email[sizeof(git_default_email) - 1] = 0; } /* And set the default date */ datestamp(git_default_date, sizeof(git_default_date)); @@ -149,7 +156,8 @@ static int copy(char *buf, int size, int offset, const char *src) return offset; } -char *get_ident(const char *name, const char *email, const char *date_str) +static const char *get_ident(const char *name, const char *email, + const char *date_str) { static char buffer[1000]; char date[50]; @@ -174,12 +182,16 @@ char *get_ident(const char *name, const char *email, const char *date_str) return buffer; } -char *git_author_info(void) +const char *git_author_info(void) { - return get_ident(getenv("GIT_AUTHOR_NAME"), getenv("GIT_AUTHOR_EMAIL"), getenv("GIT_AUTHOR_DATE")); + return get_ident(getenv("GIT_AUTHOR_NAME"), + getenv("GIT_AUTHOR_EMAIL"), + getenv("GIT_AUTHOR_DATE")); } -char *git_committer_info(void) +const char *git_committer_info(void) { - return get_ident(getenv("GIT_COMMITTER_NAME"), getenv("GIT_COMMITTER_EMAIL"), getenv("GIT_COMMITTER_DATE")); + return get_ident(getenv("GIT_COMMITTER_NAME"), + getenv("GIT_COMMITTER_EMAIL"), + getenv("GIT_COMMITTER_DATE")); }