summaryrefslogtreecommitdiff
path: root/memcheck/tests/linux/capget.c
diff options
context:
space:
mode:
Diffstat (limited to 'memcheck/tests/linux/capget.c')
-rw-r--r--memcheck/tests/linux/capget.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/memcheck/tests/linux/capget.c b/memcheck/tests/linux/capget.c
index 31d81956..ce9b18b0 100644
--- a/memcheck/tests/linux/capget.c
+++ b/memcheck/tests/linux/capget.c
@@ -4,6 +4,7 @@
#include <stdio.h> /* printf() */
#include <unistd.h> /* syscall() */
#include <sys/syscall.h> /* __NR_capget */
+#include <sys/types.h> /* uid_t */
#include <linux/capability.h> /* _LINUX_CAPABILITY_VERSION */
@@ -13,6 +14,8 @@ int main()
struct __user_cap_data_struct d;
int syscall_result;
+ if (getuid() == 0)
+ fprintf(stderr, "Running as root\n");
h.version = _LINUX_CAPABILITY_VERSION;
h.pid = 0;
syscall_result = syscall(__NR_capget, &h, &d);