Ticket #686: nALFS-1.1.8.wget.patch

File nALFS-1.1.8.wget.patch, 483 bytes (added by neven@…, 21 years ago)

Patch removing unmatched conversion specifier.

  • src/handlers/new-download.c

    diff -ur nALFS-1.1.8/src/handlers/new-download.c nALFS-1.1.8-new/src/handlers/new-download.c
    old new  
    5757#ifdef HAVE_LIBCURL
    5858        status = load_url(file, url);
    5959#else
    60         status = execute_command("wget --progress=dot -O %s %s%s", file, url);
     60        status = execute_command("wget --progress=dot -O %s %s", file, url);
    6161#endif
    6262
    6363        if (status) {