diff options
Diffstat (limited to 'html.c')
-rw-r--r-- | html.c | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -11,6 +11,7 @@ | |||
11 | #include <stdlib.h> | 11 | #include <stdlib.h> |
12 | #include <stdarg.h> | 12 | #include <stdarg.h> |
13 | #include <string.h> | 13 | #include <string.h> |
14 | #include <errno.h> | ||
14 | 15 | ||
15 | int htmlfd = STDOUT_FILENO; | 16 | int htmlfd = STDOUT_FILENO; |
16 | 17 | ||
@@ -168,8 +169,11 @@ int html_include(const char *filename) | |||
168 | char buf[4096]; | 169 | char buf[4096]; |
169 | size_t len; | 170 | size_t len; |
170 | 171 | ||
171 | if (!(f = fopen(filename, "r"))) | 172 | if (!(f = fopen(filename, "r"))) { |
173 | fprintf(stderr, "[cgit] Failed to include file %s: %s (%d).\n", | ||
174 | filename, strerror(errno), errno); | ||
172 | return -1; | 175 | return -1; |
176 | } | ||
173 | while((len = fread(buf, 1, 4096, f)) > 0) | 177 | while((len = fread(buf, 1, 4096, f)) > 0) |
174 | write(htmlfd, buf, len); | 178 | write(htmlfd, buf, len); |
175 | fclose(f); | 179 | fclose(f); |