Commit 7564623d authored by Deomid Ryabkov's avatar Deomid Ryabkov Committed by Marko Mikulicic

Restore function of CS_DISABLE_STDIO

PUBLISHED_FROM=99c1c7a8cfcb84d283e4ed712f4da6879c41209c
parent dc6b4457
...@@ -372,6 +372,11 @@ void cs_log_printf(const char *fmt, ...) { ...@@ -372,6 +372,11 @@ void cs_log_printf(const char *fmt, ...) {
fputc('\n', cs_log_file); fputc('\n', cs_log_file);
fflush(cs_log_file); fflush(cs_log_file);
} }
void cs_log_set_file(FILE *file) {
cs_log_file = file;
}
#endif /* !CS_DISABLE_STDIO */ #endif /* !CS_DISABLE_STDIO */
void cs_log_set_level(enum cs_log_level level) { void cs_log_set_level(enum cs_log_level level) {
...@@ -380,10 +385,6 @@ void cs_log_set_level(enum cs_log_level level) { ...@@ -380,10 +385,6 @@ void cs_log_set_level(enum cs_log_level level) {
cs_log_ts = cs_time(); cs_log_ts = cs_time();
#endif #endif
} }
void cs_log_set_file(FILE *file) {
cs_log_file = file;
}
#ifdef MG_MODULE_LINES #ifdef MG_MODULE_LINES
#line 1 "./src/../../common/cs_dirent.c" #line 1 "./src/../../common/cs_dirent.c"
#endif #endif
......
...@@ -32,6 +32,8 @@ ...@@ -32,6 +32,8 @@
#endif #endif
#if defined(MG_DISABLE_STDIO) && !defined(CS_DISABLE_STDIO) #if defined(MG_DISABLE_STDIO) && !defined(CS_DISABLE_STDIO)
#define CS_DISABLE_STDIO #define CS_DISABLE_STDIO
#elif defined(CS_DISABLE_STDIO) && !defined(MG_DISABLE_STDIO)
#define MG_DISABLE_STDIO
#endif #endif
/* All of the below features depend on filesystem access, disable them. */ /* All of the below features depend on filesystem access, disable them. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment