31 lines
988 B
Diff
31 lines
988 B
Diff
|
From 0006edd6319648e5a5eac86b6c7c82d67c4b5cb1 Mon Sep 17 00:00:00 2001
|
||
|
From: Alexander Graf <agraf@suse.de>
|
||
|
Date: Sun, 11 Dec 2011 01:21:51 +0100
|
||
|
Subject: [PATCH 32/32] linux-user: be silent about capget failures
|
||
|
|
||
|
Complaining about capget doesn't buy us anything, but makes %check
|
||
|
fail in certain builds. So better not complain about its missing
|
||
|
implementation and go on with life :)
|
||
|
|
||
|
Signed-off-by: Alexander Graf <agraf@suse.de>
|
||
|
---
|
||
|
linux-user/syscall.c | 2 +-
|
||
|
1 files changed, 1 insertions(+), 1 deletions(-)
|
||
|
|
||
|
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
|
||
|
index fd6ff1f..9ba51bf 100644
|
||
|
--- a/linux-user/syscall.c
|
||
|
+++ b/linux-user/syscall.c
|
||
|
@@ -7165,7 +7165,7 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
|
||
|
unlock_user(p, arg1, ret);
|
||
|
break;
|
||
|
case TARGET_NR_capget:
|
||
|
- goto unimplemented;
|
||
|
+ goto unimplemented_nowarn;
|
||
|
case TARGET_NR_capset:
|
||
|
goto unimplemented;
|
||
|
case TARGET_NR_sigaltstack:
|
||
|
--
|
||
|
1.6.0.2
|
||
|
|