We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 97d7fee + 48196af commit 4c048e3Copy full SHA for 4c048e3
daemon.c
@@ -1083,7 +1083,8 @@ int main(int argc, char **argv)
1083
openlog("git-daemon", LOG_PID, LOG_DAEMON);
1084
set_die_routine(daemon_die);
1085
} else
1086
- setlinebuf(stderr); /* avoid splitting a message in the middle */
+ /* avoid splitting a message in the middle */
1087
+ setvbuf(stderr, NULL, _IOLBF, 0);
1088
1089
if (inetd_mode && (group_name || user_name))
1090
die("--user and --group are incompatible with --inetd");
0 commit comments