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:
authorAndreas Ericsson <exon@op5.se>2005-11-14 19:41:01 +0300
committerJunio C Hamano <junkio@cox.net>2005-11-15 11:19:32 +0300
commitbce8230d5d897a738cc004954df71f50a40295db (patch)
tree4686035a39e23998a56858bf1b797b457e12156b /daemon.c
parent8b649e27dd26608098605ded691b497ffa032500 (diff)
git-daemon: --inetd implies --syslog
Otherwise nothing is logged anywhere, which is a Bad Thing. Signed-off-by: Andreas Ericsson <ae@op5.se> Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'daemon.c')
-rw-r--r--daemon.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/daemon.c b/daemon.c
index c3f86410d4..e184752298 100644
--- a/daemon.c
+++ b/daemon.c
@@ -628,8 +628,9 @@ int main(int argc, char **argv)
if (inetd_mode) {
fclose(stderr); //FIXME: workaround
+ log_syslog = 1;
return execute();
- } else {
- return serve(port);
}
+
+ return serve(port);
}