#686 closed defect (fixed)
download handler error when wget is used
Reported by: | Owned by: | ||
---|---|---|---|
Priority: | lowest | Milestone: | |
Component: | nALFS - Back End (XML Handlers) | Version: | 1.1.7 |
Severity: | normal | Keywords: | |
Cc: |
Description
On Version 1.1.8, the file new_download.c contains the following code in methode get_url.
#ifdef HAVE_LIBCURL
status = load_url(file, url);
#else
status = execute_command("wget --progress=dot -O %s %s%s", file, url);
#endif
The last %s should be removed to avoid random characters to be added to url parameter
Attachments (1)
Change History (3)
by , 21 years ago
Attachment: | nALFS-1.1.8.wget.patch added |
---|
comment:2 by , 21 years ago
Resolution: | → fixed |
---|---|
Status: | new → closed |
Note:
See TracTickets
for help on using tickets.
Patch removing unmatched conversion specifier.