From: Adam Dickmeiss Date: Mon, 7 Apr 2014 20:12:11 +0000 (+0200) Subject: yaz_log_init_file may take fd= X-Git-Tag: v5.0.22~4 X-Git-Url: http://git.indexdata.com/?p=yaz-moved-to-github.git;a=commitdiff_plain;h=c00f4d99781f83c51fce80af10927023a4150331 yaz_log_init_file may take fd= to open log file at the FD given. --- diff --git a/src/log.c b/src/log.c index b439c4c..912287b 100644 --- a/src/log.c +++ b/src/log.c @@ -332,7 +332,10 @@ static void yaz_log_open_check(struct tm *tm, int force, const char *filemode) #ifdef WIN32 yaz_log_close(); #endif - new_file = fopen(cur_filename, filemode); + if (!strncmp(cur_filename, "fd=", 3)) + new_file = fdopen(atoi(cur_filename + 3), filemode); + else + new_file = fopen(cur_filename, filemode); if (new_file) { yaz_log_close();