aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/common/log.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/common/log.c b/src/common/log.c
index 77e53449fe..293c827816 100644
--- a/src/common/log.c
+++ b/src/common/log.c
@@ -85,9 +85,13 @@ logv(int severity, const char *funcname, const char *format, va_list ap)
format_msg(buf, 10024, severity, funcname, format, ap);
formatted = 1;
}
- fputs(buf, lf->file);
- fflush(lf->file);
- /* XXX check for EOF */
+ if(fputs(buf, lf->file) == EOF) { /* error */
+ assert(0); /* XXX */
+ }
+ if(fflush(lf->file) == EOF) { /* error */
+ /* don't log the error! */
+ assert(0); /* XXX fail for now. what's better to do? */
+ }
}
}