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

Commit d9f02d9c authored by John Johansen's avatar John Johansen
Browse files

apparmor: fix display of ns name



The ns name being displayed should go through an ns view lookup.

Signed-off-by: default avatarJohn Johansen <john.johansen@canonical.com>
parent 5262ef60
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1105,7 +1105,7 @@ static int seq_ns_name_show(struct seq_file *seq, void *v)
{
	struct aa_ns *ns = aa_current_profile()->ns;

	seq_printf(seq, "%s\n", ns->base.name);
	seq_printf(seq, "%s\n", aa_ns_name(ns, ns, true));

	return 0;
}