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.
This commit is contained in:
Christopher Brannon 2011-05-06 14:27:12 +00:00
commit 6180ff6e49

View file

@ -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;
}