mirror of
https://github.com/systemd/systemd-stable.git
synced 2025-02-12 21:57:27 +03:00
polkit-agent: don't use an inline function
This is long enough to just be a regular function, and is never called in inner loops, let's hence just make this a plain function.
This commit is contained in:
parent
7be830c6e8
commit
385d581b74
@ -83,3 +83,16 @@ void polkit_agent_close(void) {
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
int polkit_agent_open_if_enabled(BusTransport transport, bool ask_password) {
|
||||
|
||||
/* Open the polkit agent as a child process if necessary */
|
||||
|
||||
if (transport != BUS_TRANSPORT_LOCAL)
|
||||
return 0;
|
||||
|
||||
if (!ask_password)
|
||||
return 0;
|
||||
|
||||
return polkit_agent_open();
|
||||
}
|
||||
|
@ -1,22 +1,11 @@
|
||||
/* SPDX-License-Identifier: LGPL-2.1+ */
|
||||
#pragma once
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
#include "bus-util.h"
|
||||
|
||||
int polkit_agent_open(void);
|
||||
void polkit_agent_close(void);
|
||||
|
||||
static inline int polkit_agent_open_if_enabled(
|
||||
BusTransport transport,
|
||||
bool ask_password) {
|
||||
|
||||
/* Open the polkit agent as a child process if necessary */
|
||||
|
||||
if (transport != BUS_TRANSPORT_LOCAL)
|
||||
return 0;
|
||||
|
||||
if (!ask_password)
|
||||
return 0;
|
||||
|
||||
return polkit_agent_open();
|
||||
}
|
||||
int polkit_agent_open_if_enabled(BusTransport transport, bool ask_password);
|
||||
|
Loading…
x
Reference in New Issue
Block a user