From 9f16445464a518910f17ba88773bd9cf9f04486d Mon Sep 17 00:00:00 2001 From: Miroslav Lichvar Date: Mon, 25 Aug 2014 17:24:58 +0200 Subject: [PATCH] sys: fix typo in prctl() error message --- sys_linux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys_linux.c b/sys_linux.c index b8229dd..a8af8df 100644 --- a/sys_linux.c +++ b/sys_linux.c @@ -367,7 +367,7 @@ SYS_Linux_DropRoot(char *user) } if (prctl(PR_SET_KEEPCAPS, 1)) { - LOG_FATAL(LOGF_SysLinux, "prcap() failed"); + LOG_FATAL(LOGF_SysLinux, "prctl() failed"); } if (setgroups(0, NULL)) {