warc: fix format string for off_t

This commit is contained in:
Giuseppe Scrivano 2012-11-24 12:27:16 +01:00
parent 4f09a3118f
commit 1e229375aa
2 changed files with 7 additions and 7 deletions

View File

@ -1,3 +1,8 @@
2012-11-24 Giuseppe Scrivano <gscrivano@gnu.org>
* warc.c (warc_write_block_from_file): Use `number_to_string' to
convert the content-length to a string.
2012-11-15 Giuseppe Scrivano <gscrivano@gnu.org>
* retr.c (write_data): Fix comment.

View File

@ -245,15 +245,10 @@ static bool
warc_write_block_from_file (FILE *data_in)
{
/* Add the Content-Length header. */
char *content_length;
char content_length[22];
fseeko (data_in, 0L, SEEK_END);
if (! asprintf (&content_length, "%ld", ftello (data_in)))
{
warc_write_ok = false;
return false;
}
number_to_string (content_length, ftello (data_in));
warc_write_header ("Content-Length", content_length);
free (content_length);
/* End of the WARC header section. */
warc_write_string ("\r\n");