summaryrefslogtreecommitdiffstats
path: root/polyp/module-cli.c
diff options
context:
space:
mode:
Diffstat (limited to 'polyp/module-cli.c')
-rw-r--r--polyp/module-cli.c11
1 files changed, 9 insertions, 2 deletions
diff --git a/polyp/module-cli.c b/polyp/module-cli.c
index 55fe8ad4..7d278f90 100644
--- a/polyp/module-cli.c
+++ b/polyp/module-cli.c
@@ -50,6 +50,11 @@ int pa__init(struct pa_core *c, struct pa_module*m) {
struct pa_iochannel *io;
assert(c && m);
+ if (c->running_as_daemon) {
+ pa_log_info(__FILE__": Running as daemon so won't load this module.\n");
+ return 0;
+ }
+
if (m->argument) {
pa_log(__FILE__": module doesn't accept arguments.\n");
return -1;
@@ -75,6 +80,8 @@ int pa__init(struct pa_core *c, struct pa_module*m) {
void pa__done(struct pa_core *c, struct pa_module*m) {
assert(c && m);
- pa_cli_free(m->userdata);
- pa_stdio_release();
+ if (c->running_as_daemon == 0) {
+ pa_cli_free(m->userdata);
+ pa_stdio_release();
+ }
}