Skip to content

Commit

Permalink
build: fix codespell warnings
Browse files Browse the repository at this point in the history
Warnings:

    $ make codespell
    Running codespell...
    ./README:757: Manuel ==> Manual
    ./RELNOTES:269: relpaced ==> replaced
    ./src/firecfg/desktop_files.c:60: diectory ==> directory
    ./platform/debian/control.i386:11: namepaces ==> namespaces
    ./platform/debian/control.amd64:11: namepaces ==> namespaces
    make: *** [Makefile:383: codespell] Error 65
    $ codespell --version
    2.2.6
  • Loading branch information
kmk3 committed Feb 2, 2024
1 parent b23f484 commit 58e0b5c
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ scan-build: clean
.PHONY: codespell
codespell:
@printf 'Running %s...\n' $@
@codespell --ignore-regex 'UE|als|chage|creat|doas|ether|isplay|readby|[Ss]hotcut' \
@codespell --ignore-regex 'Manuel|UE|als|chage|creat|doas|ether|isplay|readby|[Ss]hotcut' \
-S *.d,*.gz,*.o,*.so \
-S COPYING,m4 \
-S ./contrib/syscalls.sh \
Expand Down
2 changes: 1 addition & 1 deletion RELNOTES
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ firejail (0.9.68) baseline; urgency=low
-- netblue30 <[email protected]> Sun, 6 Feb 2022 09:00:00 -0500

firejail (0.9.66) baseline; urgency=low
* deprecated --audit options, relpaced by jailcheck utility
* deprecated --audit options, replaced by jailcheck utility
* deprecated follow-symlink-as-user from firejail.config
* new firejail.config settings: private-bin, private-etc
* new firejail.config settings: private-opt, private-srv
Expand Down
2 changes: 1 addition & 1 deletion platform/debian/control.amd64
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Suggests: python, python3
Section: admin
Priority: optional
Homepage: https://github.com/netblue30/firejail
Description: Linux namepaces sandbox program.
Description: Linux namespaces sandbox program.
Firejail is a SUID sandbox program that reduces the risk of security
breaches by restricting the running environment of untrusted applications
using Linux namespaces and seccmp-bpf. It includes sandbox profiles for
Expand Down
2 changes: 1 addition & 1 deletion platform/debian/control.i386
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Suggests: python, python3
Section: admin
Priority: optional
Homepage: https://github.com/netblue30/firejail
Description: Linux namepaces sandbox program.
Description: Linux namespaces sandbox program.
Firejail is a SUID sandbox program that reduces the risk of security
breaches by restricting the running environment of untrusted applications
using Linux namespaces and seccmp-bpf. It includes sandbox profiles for
Expand Down
2 changes: 1 addition & 1 deletion src/firecfg/desktop_files.c
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ static int check_profile(const char *name, const char *homedir) {
}


// look for a profile file in /etc/firejail diectory and in homedir/.config/firejail directory
// look for a profile file in /etc/firejail and ~/.config/firejail
static int have_profile(const char *filename, const char *homedir) {
assert(filename);
assert(homedir);
Expand Down

0 comments on commit 58e0b5c

Please sign in to comment.