diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-07-30 14:59:53 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-08-02 17:18:26 -0400 |
commit | 708119de1cf9165d0cdfd3f3ba36be6672c42fdb (patch) | |
tree | caa50b4fe605e6d31c5f805db026315955262fc6 /src/parse.c | |
parent | e3dd073fb071fe27cfd955e4eca31ff7faf2a18e (diff) | |
download | bfs-708119de1cf9165d0cdfd3f3ba36be6672c42fdb.tar.xz |
Update opengroup.org links to POSIX 2024
Diffstat (limited to 'src/parse.c')
-rw-r--r-- | src/parse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parse.c b/src/parse.c index 02a795d..b13d1f8 100644 --- a/src/parse.c +++ b/src/parse.c @@ -1126,7 +1126,7 @@ static struct bfs_expr *parse_fnmatch(const struct bfs_parser *parser, struct bf // strcmp() can be much faster than fnmatch() since it doesn't have to // parse the pattern, so special-case patterns with no wildcards. // - // https://pubs.opengroup.org/onlinepubs/9699919799/utilities/V3_chap02.html#tag_18_13_01 + // https://pubs.opengroup.org/onlinepubs/9799919799/utilities/V3_chap02.html#tag_19_14_01 expr->literal = strcspn(expr->pattern, "?*\\[") == len; return expr; |