Commit f8797713 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

FTP: directories cannot be sought

(cherry picked from commit bfd061bbf3aaa9da2d648de8c79d9f0ee75bfac9)
parent a864e0e4
......@@ -582,7 +582,7 @@ static int Control( access_t *p_access, int i_query, va_list args )
/* */
case ACCESS_CAN_SEEK:
pb_bool = (bool*)va_arg( args, bool* );
*pb_bool = true;
*pb_bool = !p_access->p_sys->directory;
break;
case ACCESS_CAN_FASTSEEK:
pb_bool = (bool*)va_arg( args, bool* );
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment