mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
build: rename CONFIG_LIBCAP to CONFIG_LIBCAP_NG
Since we are actually testing for the newer capng library, rename the symbol to match. Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
44901b5aff
commit
a358bca240
3 changed files with 10 additions and 10 deletions
|
@ -43,7 +43,7 @@
|
|||
|
||||
#include "net/tap-linux.h"
|
||||
|
||||
#ifdef CONFIG_LIBCAP
|
||||
#ifdef CONFIG_LIBCAP_NG
|
||||
#include <cap-ng.h>
|
||||
#endif
|
||||
|
||||
|
@ -207,7 +207,7 @@ static int send_fd(int c, int fd)
|
|||
return sendmsg(c, &msg, 0);
|
||||
}
|
||||
|
||||
#ifdef CONFIG_LIBCAP
|
||||
#ifdef CONFIG_LIBCAP_NG
|
||||
static int drop_privileges(void)
|
||||
{
|
||||
/* clear all capabilities */
|
||||
|
@ -246,7 +246,7 @@ int main(int argc, char **argv)
|
|||
int access_allowed, access_denied;
|
||||
int ret = EXIT_SUCCESS;
|
||||
|
||||
#ifdef CONFIG_LIBCAP
|
||||
#ifdef CONFIG_LIBCAP_NG
|
||||
/* if we're run from an suid binary, immediately drop privileges preserving
|
||||
* cap_net_admin */
|
||||
if (geteuid() == 0 && getuid() != geteuid()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue