diff options
author | Tobias Klauser <tklauser@distanz.ch> | 2007-09-07 12:25:57 +0200 |
---|---|---|
committer | Tobias Klauser <tklauser@xenon.tklauser.home> | 2007-09-07 12:25:57 +0200 |
commit | 6bd2fd4980190c05ccfde6474f380082a6cfcaeb (patch) | |
tree | 24413c7b61677088ff65fc42b93ec5d3a45e105d | |
parent | a86c62dd8c18d34b5a85efc5baa80224ce3cf4a4 (diff) |
Also print strerror when file type is not supported
-rw-r--r-- | inotail.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -287,7 +287,7 @@ static int tail_file(struct file_struct *f, unsigned long n_units, char mode, ch } if (!IS_TAILABLE(finfo.st_mode)) { - fprintf(stderr, "Error: '%s' of unsupported file type\n", f->name); + fprintf(stderr, "Error: '%s' of unsupported file type (%s)\n", f->name, strerror(errno)); ignore_file(f); return -1; } |