aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-03-28 14:00:14 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-03-28 14:00:14 -0400
commitaf286f7e6ff3709f4be8295cf7b4f255e9f896ef (patch)
treea352ec5d4cd8af6c9cafc7feb859660f2caf4d6c /src
parentc70b11f01e71cd4443b8ee904f439a66b9b48b20 (diff)
Remove GLOB_TILDE_CHECK for compatiblity
Diffstat (limited to 'src')
-rw-r--r--src/stdlib/paths.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stdlib/paths.c b/src/stdlib/paths.c
index 7a4df182..cf0eb049 100644
--- a/src/stdlib/paths.c
+++ b/src/stdlib/paths.c
@@ -694,7 +694,7 @@ public OptionalClosure_t Path$by_line(Path_t path)
public Array_t Path$glob(Path_t path)
{
glob_t glob_result;
- int status = glob(Path$as_c_string(path), GLOB_BRACE | GLOB_TILDE | GLOB_TILDE_CHECK, NULL, &glob_result);
+ int status = glob(Path$as_c_string(path), GLOB_BRACE | GLOB_TILDE, NULL, &glob_result);
if (status != 0 && status != GLOB_NOMATCH)
fail("Failed to perform globbing");