diff options
author | Johannes Schindelin <johannes.schindelin@gmx.de> | 2018-10-15 11:47:08 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-10-16 05:59:57 +0200 |
commit | 501afcb8b021611758bf07d0e18fa8ff7fbbed73 (patch) | |
tree | 57f92e7957ba23bf9b0315825742c6ae7815c098 /git-compat-util.h | |
parent | getpwuid(mingw): provide a better default for the user name (diff) | |
download | git-501afcb8b021611758bf07d0e18fa8ff7fbbed73.tar.xz git-501afcb8b021611758bf07d0e18fa8ff7fbbed73.zip |
mingw: use domain information for default email
When a user is registered in a Windows domain, it is really easy to
obtain the email address. So let's do that.
Suggested by Lutz Roeder.
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-compat-util.h')
-rw-r--r-- | git-compat-util.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/git-compat-util.h b/git-compat-util.h index 5f2e90932f..71779cb0ae 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -382,6 +382,10 @@ static inline char *git_find_last_dir_sep(const char *path) #define find_last_dir_sep git_find_last_dir_sep #endif +#ifndef query_user_email +#define query_user_email() NULL +#endif + #if defined(__HP_cc) && (__HP_cc >= 61000) #define NORETURN __attribute__((noreturn)) #define NORETURN_PTR |