Skip to content

Commit 9490fc1

Browse files
committed
build: fix codespell errors in more files
Found by simply running `codespell .`. Environment: codespell 2.2.5-2 on Artix Linux.
1 parent b782049 commit 9490fc1

File tree

7 files changed

+9
-9
lines changed

7 files changed

+9
-9
lines changed

RELNOTES

+2-2
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ firejail (0.9.62) baseline; urgency=low
363363
* whitelisting /usr/share in a large number of profiles
364364
* new scripts in contrib: gdb-firejail.sh and sort.py
365365
* enhancement: whitelist /usr/share in some profiles
366-
* added signal mediation ot apparmor profile
366+
* added signal mediation to apparmor profile
367367
* new conditions: HAS_X11, HAS_NET
368368
* new profiles: qgis, klatexformula, klatexformula_cmdl, links, xlinks
369369
* new profiles: pandoc, teams-for-linux, OpenArena, gnome-sound-recorder
@@ -758,7 +758,7 @@ firejail (0.9.44.4) baseline; urgency=low
758758

759759
firejail (0.9.44.2) baseline; urgency=low
760760
* security: overwrite /etc/resolv.conf found by Martin Carpenter (CVE-2016-10118)
761-
* secuirty: TOCTOU exploit for --get and --put found by Daniel Hodson
761+
* security: TOCTOU exploit for --get and --put found by Daniel Hodson
762762
* security: invalid environment exploit found by Martin Carpenter (CVE-2016-10122)
763763
* security: several security enhancements
764764
* bugfix: crashing VLC by pressing Ctrl-O

contrib/jail_prober.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ def run_firejail(program, all_args):
151151
if arg:
152152
myargs.insert(-1, arg)
153153
subprocess.call(myargs)
154-
ans = input('Did %s run correctly? [y]/n ' % program)
155-
if ans in ['n', 'N']:
154+
answer = input('Did %s run correctly? [y]/n ' % program)
155+
if answer in ['n', 'N']:
156156
bad_args.append(arg)
157157
elif arg:
158158
good_args.insert(-1, arg)

etc/profile-a-l/kwin_x11.profile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ include kwin_x11.local
55
# Persistent global definitions
66
include globals.local
77

8-
# fix automatical kwin_x11 sandboxing:
8+
# fix automatic kwin_x11 sandboxing:
99
# echo KDEWM=kwin_x11 >> ~/.pam_environment
1010

1111
noblacklist ${HOME}/.cache/kwin

etc/profile-m-z/tvbrowser.profile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Firejail profile for tvbrowser
2-
# Description: java tv programm form tvbrowser.org
2+
# Description: java tv program form tvbrowser.org
33
# This file is overwritten after every install/update
44
# Persistent local customizations
55
include tvbrowser.local

etc/profile-m-z/twitch.profile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Firejail profile for twitch
2-
# Description: Unofficial electron based desktop warpper for Twitch
2+
# Description: Unofficial electron based desktop wrapper for Twitch
33
# This file is overwritten after every install/update
44
# Persistent local customizations
55
include twitch.local

etc/profile-m-z/youtube.profile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Firejail profile for youtube
2-
# Description: Unofficial electron based desktop warpper for YouTube
2+
# Description: Unofficial electron based desktop wrapper for YouTube
33
# This file is overwritten after every install/update
44
# Persistent local customizations
55
include youtube.local

etc/profile-m-z/youtubemusic-nativefier.profile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Firejail profile for youtubemusic-nativefier
2-
# Description: Unofficial electron based desktop warpper for YouTube Music
2+
# Description: Unofficial electron based desktop wrapper for YouTube Music
33
# This file is overwritten after every install/update
44
# Persistent local customizations
55
include youtube.local

0 commit comments

Comments
 (0)