From 7f29bb1a8d2eb5edc4e3ea50223370dd4ba4a96c Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Thu, 15 Apr 2004 05:07:04 +0000 Subject: log cycling and a few cleanups git-svn-id: https://svn.musicpd.org/mpd/trunk@772 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/main.c | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 69560dbf3..944c1af76 100644 --- a/src/main.c +++ b/src/main.c @@ -356,31 +356,19 @@ int main(int argc, char * argv[]) { exit(EXIT_FAILURE); } - if(close(STDOUT_FILENO)) { - fprintf(err,"problems closing stdout : %s\n", - strerror(errno)); - exit(EXIT_FAILURE); - } - - if(close(STDERR_FILENO)) { - fprintf(err,"problems closing stderr : %s\n", - strerror(errno)); - exit(EXIT_FAILURE); - } - if(dup2(fileno(out),STDOUT_FILENO)<0) { - fprintf(err,"problems dup2 stdout : %s\n", + myfprintf(err,"problems dup2 stdout : %s\n", strerror(errno)); exit(EXIT_FAILURE); } if(dup2(fileno(err),STDERR_FILENO)<0) { - fprintf(err,"problems dup2 stderr : %s\n", + myfprintf(err,"problems dup2 stderr : %s\n", strerror(errno)); exit(EXIT_FAILURE); } - myfprintfStdLogMode(out,err); + myfprintfStdLogMode(out,err,options.logFile,options.errorFile); fflush(NULL); pid = fork(); -- cgit v1.2.3