From 72b101aedf6381fe7726093e3efbd232b6ca9a39 Mon Sep 17 00:00:00 2001 From: Christian Brauner Date: Tue, 11 Jun 2019 23:32:19 +0200 Subject: [PATCH] seccomp: s/seccomp_notif_id_valid/seccomp_notify_id_valid/g Align with upstream libseccomp. Signed-off-by: Christian Brauner --- src/lxc/seccomp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/lxc/seccomp.c b/src/lxc/seccomp.c index 89c66ad9f..3784aaae7 100644 --- a/src/lxc/seccomp.c +++ b/src/lxc/seccomp.c @@ -1372,7 +1372,7 @@ int seccomp_notify_handler(int fd, uint32_t events, void *data, * Make sure that the fd for /proc//mem we just opened still * refers to the correct process's memory. */ - ret = seccomp_notif_id_valid(fd, req->id); + ret = seccomp_notify_id_valid(fd, req->id); if (ret < 0) { (void)seccomp_notify_default_answer(fd, req, resp, hdlr); SYSERROR("Invalid seccomp notify request id");