Andrew's git
/
gitweb.git
/ blobdiff
summary
|
log
|
commit
|
diff
|
tree
commit
grep
author
committer
pickaxe
?
re
git-cvsexportcommit.perl: exit with non-0 status if patch fails.
[gitweb.git]
/
daemon.c
diff --git
a/daemon.c
b/daemon.c
index c3f86410d4fe392a2ced76b09e6af8ba8af534d5..e18475229885d28b39970f9619d0e89d66a8199b 100644
(file)
--- 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);
}