summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Graf <agraf@suse.de>2011-12-11 01:21:51 +0100
committerJunfeng Dong <junfeng.dong@intel.com>2013-11-19 18:21:56 +0800
commit1b2b9e9d89c0e4089706717d0658d9da508b57f6 (patch)
tree86e90bb89ee720b1afc242e635f852b111abbca6
parent6c72ff1108b89c0de2e67c30ccfcdd7cc0b2c337 (diff)
downloadqemu-1b2b9e9d89c0e4089706717d0658d9da508b57f6.tar.gz
qemu-1b2b9e9d89c0e4089706717d0658d9da508b57f6.tar.bz2
qemu-1b2b9e9d89c0e4089706717d0658d9da508b57f6.zip
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>
-rw-r--r--linux-user/syscall.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index eda445500..628fe664d 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -7609,7 +7609,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: