Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e90004d5 authored by Colin Ian King's avatar Colin Ian King Committed by Daniel Borkmann
Browse files

bpf: fix spelling mistake: "funcation"-> "function"



Trivial fix to spelling mistake in error message text.

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarDaniel Borkmann <daniel@iogearbox.net>
parent 962b5827
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -772,7 +772,7 @@ static int check_subprogs(struct bpf_verifier_env *env)
			return -EPERM;
		}
		if (bpf_prog_is_dev_bound(env->prog->aux)) {
			verbose(env, "funcation calls in offloaded programs are not supported yet\n");
			verbose(env, "function calls in offloaded programs are not supported yet\n");
			return -EINVAL;
		}
		ret = add_subprog(env, i + insn[i].imm + 1);