summaryrefslogtreecommitdiffstats
path: root/core/unix.c
diff options
context:
space:
mode:
authorGravatar Robert C. Helling <helling@atdotde.de>2019-01-12 10:04:05 +0100
committerGravatar bstoeger <32835590+bstoeger@users.noreply.github.com>2019-01-16 02:38:30 +0100
commit5f04fecd005f6566f9931ba7b692bd6ca109bc87 (patch)
tree95391fc1b57ab0a59f405f31292ecb9d5d6bd467 /core/unix.c
parent2c794348c1060c8f6ce55c598c0a20690c4967f2 (diff)
downloadsubsurface-5f04fecd005f6566f9931ba7b692bd6ca109bc87.tar.gz
Don't allow empty username for git
When no real name is set in /etc/passwd the username ends up being ",,,". Git does not like that. Actually, only the part before the first comma is the name, the rest is office and phone number. We don't want those. Before we only testing for the username being a NULL pointer. Reported-by: Keith Grimes Signed-off-by: Robert C. Helling <helling@atdotde.de>
Diffstat (limited to 'core/unix.c')
-rw-r--r--core/unix.c12
1 files changed, 11 insertions, 1 deletions
diff --git a/core/unix.c b/core/unix.c
index 1d92a1ad3..5b1cc3720 100644
--- a/core/unix.c
+++ b/core/unix.c
@@ -38,8 +38,18 @@ void subsurface_user_info(struct user_info *user)
const char *username = getenv("USER");
if (pwd) {
- if (!empty_string(pwd->pw_gecos))
+ if (!empty_string(pwd->pw_gecos)) {
user->name = strdup(pwd->pw_gecos);
+ // We only want the name, not the office or phone number
+ char *c = user->name;
+ while (*c) {
+ if (*c == ',') {
+ *c = '\0';
+ break;
+ }
+ ++c;
+ }
+ }
if (!username)
username = pwd->pw_name;
}