On 24/11/20 10:39 pm, morganamilo wrote:
> Fixes FS#68729
> 
> diff --git a/lib/libalpm/alpm.c b/lib/libalpm/alpm.c
> index 34c5b4b2..5d36136d 100644
> --- a/lib/libalpm/alpm.c
> +++ b/lib/libalpm/alpm.c
> @@ -61,6 +61,8 @@ alpm_handle_t SYMEXPORT *alpm_initialize(const char *root, 
> const char *dbpath,
>       /* set default database extension */
>       STRDUP(myhandle->dbext, ".db", goto nomem);
>  
> +     myhandle->parallel_downloads = 1;
> +
>       lockfilelen = strlen(myhandle->dbpath) + strlen(lf) + 1;
>       MALLOC(myhandle->lockfile, lockfilelen, goto nomem);
>       snprintf(myhandle->lockfile, lockfilelen, "%s%s", myhandle->dbpath, lf);
> 

Thanks - I moved that line right under the curl bit to keep download
stuff together.

Allan

Reply via email to