diff options
Diffstat (limited to 'src/core/ngx_log.h')
-rw-r--r-- | src/core/ngx_log.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/core/ngx_log.h b/src/core/ngx_log.h index 7707acdd7..d8aca8afa 100644 --- a/src/core/ngx_log.h +++ b/src/core/ngx_log.h @@ -64,10 +64,11 @@ typedef enum { typedef struct { - int log_level; - ngx_fd_t fd; - void *data; - size_t (*handler)(void *ctx, char *buf, size_t len); + int log_level; + ngx_open_file_t *file; + void *data; + size_t (*handler)(void *ctx, char *buf, size_t len); + #if 0 /* STUB */ char *action; |