diff options
author | Nick White <arch@njw.me.uk> | 2008-05-02 14:32:27 +0000 |
---|---|---|
committer | Nick White <arch@njw.me.uk> | 2008-05-02 14:32:27 +0000 |
commit | ba1c55b3d101581710d4b7c0671bf972ddf8ea2a (patch) | |
tree | a1b9e3a275114c92fe3e0aa282618e27bdd50634 /src/getht.c | |
parent | b3a496addf1fb70f462455f1d638a6f27abdf8aa (diff) |
Fixed resume bug, improved download output
Fixed bug in resume which caused forced redownloads to create invalid pdfs
Changed download output to ensure one line per download (rather than a separate
one for progress)
Changed download output to display name of file rather than url downloading
Removed obselete testfile variable
Changed variable name of filename->filepath
git-archimport-id: getht@sv.gnu.org/getht--mainline--0.1--patch-46
Diffstat (limited to 'src/getht.c')
-rw-r--r-- | src/getht.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/getht.c b/src/getht.c index 5502552..63637bf 100644 --- a/src/getht.c +++ b/src/getht.c @@ -203,7 +203,7 @@ int main(int argc, char *argv[]) int update_contents_files() /* Returns 0 on success, 1 on failure */ { - if(save_file(NULL, issue_uri, issue_xml, 0)) + if(save_file(NULL, issue_uri, issue_xml, "contents", 0)) return 1; else return 0; |