Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2015-12-21 21:59:07 +0300
committerJunio C Hamano <gitster@pobox.com>2015-12-21 21:59:07 +0300
commit5498c57cdd637eb4f42ce8e296ce9ca4ab66e289 (patch)
tree2806f731354fe228714c4811b9676378338ba43e /wrapper.c
parent7aaff08f3996eceadc98a531ef0faa8d7bae955e (diff)
parent92bcbb9b338dd27f0fd4245525093c4bce867f3d (diff)
Merge branch 'jk/ident-loosen-getpwuid'
When getpwuid() on the system returned NULL (e.g. the user is not in the /etc/passwd file or other uid-to-name mappings), the codepath to find who the user is to record it in the reflog barfed and died. Loosen the check in this codepath, which already accepts questionable ident string (e.g. host part of the e-mail address is obviously bogus), and in general when we operate fmt_ident() function in non-strict mode. * jk/ident-loosen-getpwuid: ident: loosen getpwuid error in non-strict mode ident: keep a flag for bogus default_email ident: make xgetpwuid_self() a static local helper
Diffstat (limited to 'wrapper.c')
-rw-r--r--wrapper.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/wrapper.c b/wrapper.c
index 6fcaa4dc62..c95e2906b8 100644
--- a/wrapper.c
+++ b/wrapper.c
@@ -601,18 +601,6 @@ int access_or_die(const char *path, int mode, unsigned flag)
return ret;
}
-struct passwd *xgetpwuid_self(void)
-{
- struct passwd *pw;
-
- errno = 0;
- pw = getpwuid(getuid());
- if (!pw)
- die(_("unable to look up current user in the passwd file: %s"),
- errno ? strerror(errno) : _("no such user"));
- return pw;
-}
-
char *xgetcwd(void)
{
struct strbuf sb = STRBUF_INIT;