Compare commits
2 commits
cdacfc106d
...
1b683f3395
Author | SHA1 | Date | |
---|---|---|---|
1b683f3395 | |||
33be6c49fd |
2 changed files with 3 additions and 1 deletions
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
## Upcoming Changes
|
## Upcoming Changes
|
||||||
|
|
||||||
|
Fix internal erronous buffer declaration.
|
||||||
|
|
||||||
## Version 1.2
|
## Version 1.2
|
||||||
|
|
||||||
Add the `--generate-dir=<DIR>` option, which will generate all html into the
|
Add the `--generate-dir=<DIR>` option, which will generate all html into the
|
||||||
|
|
|
@ -458,7 +458,7 @@ int c_simple_http_static_copy_over_dir(const char *from,
|
||||||
return 1;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
char *buf[1024];
|
char buf[1024];
|
||||||
size_t fread_ret;
|
size_t fread_ret;
|
||||||
unsigned long fwrite_ret;
|
unsigned long fwrite_ret;
|
||||||
while (!feof(from_file_fd)
|
while (!feof(from_file_fd)
|
||||||
|
|
Loading…
Reference in a new issue