summaryrefslogtreecommitdiff
path: root/download.c
diff options
context:
space:
mode:
Diffstat (limited to 'download.c')
-rw-r--r--download.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/download.c b/download.c
index 6c9ccae..1108b6d 100644
--- a/download.c
+++ b/download.c
@@ -162,10 +162,10 @@ void downloadissue(CURL *curl_handle, char * directory, iss * issue, int force)
}
int count;
- for(cur_section = issue->section, count = 0;
- count <= issue->no_of_sections;
- cur_section++, count++)
+ for(count = 0; count <= issue->no_of_sections; count++)
{
+ cur_section = issue->section[count];
+
snprintf(filename,STR_MAX,"%s/section_%i.pdf", newdir, cur_section->number);
if(!force){
testfile = fopen(filename, "r");