| 1039 | // Verify whether the existing file is a pipe. If it is, |
| 1040 | // disable the roll_file flag so we don't attempt rolling. |
| 1041 | struct stat s; |
| 1042 | if (stat(filename, &s) < 0) { |
| 1043 | const char *msg = "Cannot stat log file %s: %s"; |
| 1044 | char *se = strerror(errno); |
no outgoing calls
no test coverage detected