From 6180ff6e49371d9fc1cfb5afb05941222d925d70 Mon Sep 17 00:00:00 2001 From: Christopher Brannon Date: Fri, 6 May 2011 14:27:12 +0000 Subject: [PATCH] Don't check to see if espeakup is running in acsint mode. This check is important when running with speakup, since there can only be one instance accessing /dev/softsynth. It is unnecessary in acsint mode. --- espeakup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/espeakup.c b/espeakup.c index 124fcc3..dff917c 100644 --- a/espeakup.c +++ b/espeakup.c @@ -92,7 +92,7 @@ int main(int argc, char **argv) process_cli(argc, argv); /* Is the espeakup daemon running? */ - if (espeakup_is_running()) { + if (espeakup_mode != ESPEAKUP_MODE_ACSINT && espeakup_is_running()) { printf("Espeakup is already running!\n"); return 1; }