From 3e57417100ed71ae4b63f9be8d1dbd6cd2328f90 Mon Sep 17 00:00:00 2001 From: sin Date: Fri, 26 Sep 2014 16:57:58 +0100 Subject: Make stdout unbuffered as early as possible --- ratox.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ratox.c b/ratox.c index 78fb665..3e7a02f 100644 --- a/ratox.c +++ b/ratox.c @@ -1376,6 +1376,8 @@ main(int argc, char *argv[]) usage(); } ARGEND; + setbuf(stdout, NULL); + signal(SIGHUP, initshutdown); signal(SIGINT, initshutdown); signal(SIGQUIT, initshutdown); @@ -1383,8 +1385,6 @@ main(int argc, char *argv[]) signal(SIGTERM, initshutdown); signal(SIGPIPE, SIG_IGN); - setbuf(stdout, NULL); - printrat(); toxinit(); localinit(); -- cgit v1.2.3