diff options
author | June McEnroe <june@causal.agency> | 2021-09-30 19:49:37 +0000 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2021-09-30 19:49:37 +0000 |
commit | 15a3cd4853f0f6216c2b0a0a99e3baf05f444be0 (patch) | |
tree | e9a1c261c966370e251b21d2af8c101a61f00943 | |
parent | pledge(2) mtags (diff) | |
download | src-15a3cd4853f0f6216c2b0a0a99e3baf05f444be0.tar.gz src-15a3cd4853f0f6216c2b0a0a99e3baf05f444be0.zip |
Silence owner-info error
cgit runs in a chroot. It is normal that it cannot look up user info in /etc/passwd.
Diffstat (limited to '')
-rw-r--r-- | www/git.causal.agency/cgit/scan-tree.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/www/git.causal.agency/cgit/scan-tree.c b/www/git.causal.agency/cgit/scan-tree.c index 6a2f65a8..1e3b43de 100644 --- a/www/git.causal.agency/cgit/scan-tree.c +++ b/www/git.causal.agency/cgit/scan-tree.c @@ -137,8 +137,6 @@ static void add_repo(const char *base, struct strbuf *path, repo_config_fn fn) repo->path = xstrdup(path->buf); while (!repo->owner) { if ((pwd = getpwuid(st.st_uid)) == NULL) { - fprintf(stderr, "Error reading owner-info for %s: %s (%d)\n", - path->buf, strerror(errno), errno); break; } if (pwd->pw_gecos) |