Re: [dev] quark can not send files with '+' in the name

2019-01-10 Thread Laslo Hunhold
On Thu, 10 Jan 2019 23:27:12 +0300 Platon Ryzhikov wrote: Dear Platon, > I tried to use quark as local server for pacman but it returns 404 > error for files with '+' in filename. I found the following lines in > http.c (83-85): > > if (*s == '+') { > dest[i] = ' '; > } > > Why does it

[dev] quark can not send files with '+' in the name

2019-01-10 Thread Platon Ryzhikov
Hi I tried to use quark as local server for pacman but it returns 404 error for files with '+' in filename. I found the following lines in http.c (83-85): if (*s == '+') { dest[i] = ' '; } Why does it replace '+' sign with space?