summaryrefslogtreecommitdiff
path: root/src/shared/spawn-polkit-agent.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2012-04-13 21:52:25 +0200
committerLennart Poettering <lennart@poettering.net>2012-04-13 21:52:42 +0200
commit8aec53fb902563208f27a4452cec52190e901f32 (patch)
tree7736deed2bdd0aa36e48878c7acd7ae617bcaf8a /src/shared/spawn-polkit-agent.c
parent5f86ae43857e39e2bf5701449502f39d66d80c7c (diff)
polkit: spawn agent in --fallback mode
Diffstat (limited to 'src/shared/spawn-polkit-agent.c')
-rw-r--r--src/shared/spawn-polkit-agent.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/shared/spawn-polkit-agent.c b/src/shared/spawn-polkit-agent.c
index fd7258841..fcb3722dd 100644
--- a/src/shared/spawn-polkit-agent.c
+++ b/src/shared/spawn-polkit-agent.c
@@ -57,7 +57,7 @@ int polkit_agent_open(void) {
r = fork_agent(&agent_pid,
&pipe_fd[1], 1,
POLKIT_AGENT_BINARY_PATH,
- POLKIT_AGENT_BINARY_PATH, "--notify-fd", notify_fd, NULL);
+ POLKIT_AGENT_BINARY_PATH, "--notify-fd", notify_fd, "--fallback", NULL);
/* Close the writing side, because that's the one for the agent */
close_nointr_nofail(pipe_fd[1]);