1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-28 03:06:20 -04:00

[curl] Check g.multi

This commit is contained in:
Witold Filipczyk 2023-06-20 09:30:14 +02:00
parent a2a06df24a
commit 2f32ca5611

View File

@ -623,11 +623,15 @@ check_multi_info(GlobalInfo *g)
void
ftpes_protocol_handler(struct connection *conn)
{
do_ftpes(conn);
if (g.multi) {
do_ftpes(conn);
}
}
void
sftp_protocol_handler(struct connection *conn)
{
do_ftpes(conn);
if (g.multi) {
do_ftpes(conn);
}
}