Skip to content

Commit

Permalink
apparmor: fix spelling mistake "immutible" -> "immutable"
Browse files Browse the repository at this point in the history
There is a spelling mistake in an information message string, fix it.

Signed-off-by: Colin Ian King <colin.king@canonical.com>
Signed-off-by: John Johansen <john.johansen@canonical.com>
  • Loading branch information
Colin Ian King authored and John Johansen committed Apr 17, 2019
1 parent 145a0ef commit 058c4f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion security/apparmor/policy.c
Original file line number Diff line number Diff line change
Expand Up @@ -587,7 +587,7 @@ static int replacement_allowed(struct aa_profile *profile, int noreplace,
{
if (profile) {
if (profile->label.flags & FLAG_IMMUTIBLE) {
*info = "cannot replace immutible profile";
*info = "cannot replace immutable profile";
return -EPERM;
} else if (noreplace) {
*info = "profile already exists";
Expand Down

0 comments on commit 058c4f3

Please sign in to comment.