aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-08-12 20:01:59 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2023-08-12 20:04:41 -0300
commitb7820492f916391bc830b66e2b38106e2eee1b65 (patch)
tree2d4451ecd88cf3f282e70bf93824769df50fd159
parentani-cli.profile: allow mktemp (#5954) (diff)
downloadfirejail-b7820492f916391bc830b66e2b38106e2eee1b65.tar.gz
firejail-b7820492f916391bc830b66e2b38106e2eee1b65.tar.zst
firejail-b7820492f916391bc830b66e2b38106e2eee1b65.zip
build: fix wrong man page paths
Change the old .txt paths into the new .in paths. This amends commit 76bd5ad0f ("build: simplify code related to man pages", 2023-07-12) / PR #5898.
-rw-r--r--.github/workflows/build-extra.yml4
-rw-r--r--src/firejail/util.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build-extra.yml b/.github/workflows/build-extra.yml
index a36997838..0f7ddb466 100644
--- a/.github/workflows/build-extra.yml
+++ b/.github/workflows/build-extra.yml
@@ -7,7 +7,7 @@ on:
7 - 'contrib/syntax/**' 7 - 'contrib/syntax/**'
8 - 'contrib/vim/**' 8 - 'contrib/vim/**'
9 - 'etc/**' 9 - 'etc/**'
10 - 'src/man/*.txt' 10 - 'src/man/*.in'
11 - .git-blame-ignore-revs 11 - .git-blame-ignore-revs
12 - .github/dependabot.yml 12 - .github/dependabot.yml
13 - .github/pull_request_template.md 13 - .github/pull_request_template.md
@@ -29,7 +29,7 @@ on:
29 - 'contrib/syntax/**' 29 - 'contrib/syntax/**'
30 - 'contrib/vim/**' 30 - 'contrib/vim/**'
31 - 'etc/**' 31 - 'etc/**'
32 - 'src/man/*.txt' 32 - 'src/man/*.in'
33 - .git-blame-ignore-revs 33 - .git-blame-ignore-revs
34 - .github/dependabot.yml 34 - .github/dependabot.yml
35 - .github/pull_request_template.md 35 - .github/pull_request_template.md
diff --git a/src/firejail/util.c b/src/firejail/util.c
index 87b771867..970832b38 100644
--- a/src/firejail/util.c
+++ b/src/firejail/util.c
@@ -1474,7 +1474,7 @@ int ascii_isxdigit(unsigned char c) {
1474 return ret; 1474 return ret;
1475} 1475}
1476 1476
1477// Note: Keep this in sync with NAME VALIDATION in src/man/firejail.txt. 1477// Note: Keep this in sync with NAME VALIDATION in src/man/firejail.1.in.
1478// 1478//
1479// Allow only ASCII letters, digits and a few special characters; names with 1479// Allow only ASCII letters, digits and a few special characters; names with
1480// only numbers are rejected; spaces and control characters are rejected. 1480// only numbers are rejected; spaces and control characters are rejected.