diff options
author | Ryo Nakamura <upa@haeena.net> | 2023-08-03 21:59:54 +0900 |
---|---|---|
committer | Ryo Nakamura <upa@haeena.net> | 2023-08-03 21:59:54 +0900 |
commit | fbc817213b418285ff31dfa41cc9f4fc9009fc15 (patch) | |
tree | 2782d0dd1f3d622d86fe9b14feabe1b737560df1 /src/mscp.c | |
parent | 5a4c043889fbec08122d6a7f440e9292f9830a7d (diff) |
use pseudo glob/globfree for remote-glob when musl
musllibc does not implement GLOB_ALTDIRFUNC, so do not call
glob for remote sides when libc is musl.
test_e2e.py skips test_glob_src_path when running on alpine.
Diffstat (limited to 'src/mscp.c')
-rw-r--r-- | src/mscp.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -446,7 +446,7 @@ void *mscp_scan_thread(void *arg) list_splice_tail(&tmp, m->path_list.prev); } - globfree(&pglob); + mscp_globfree(&pglob); } mpr_info(m->msg_fp, "walk source path(s) done\n"); |