diff options
Diffstat (limited to 'syslogd/logfile.h')
-rw-r--r-- | syslogd/logfile.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/syslogd/logfile.h b/syslogd/logfile.h index 3a596ba..ccbfd5d 100644 --- a/syslogd/logfile.h +++ b/syslogd/logfile.h @@ -23,10 +23,10 @@ typedef struct logfile_t { int facility; int fd; - char ident[]; + char filename[]; } logfile_t; -logfile_t *logfile_create(const char *ident, const char *name, int facility); +logfile_t *logfile_create(const char *filename, int facility); void logfile_destroy(logfile_t *file); |