summaryrefslogtreecommitdiff
path: root/src/gcsd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gcsd.c')
-rw-r--r--src/gcsd.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/gcsd.c b/src/gcsd.c
index b2200b6..b4beef9 100644
--- a/src/gcsd.c
+++ b/src/gcsd.c
@@ -1,15 +1,15 @@
/*
* gcsd
*
- * gcsd the generic command sequencer daemon can be used to serialize
+ * gcsd the generic command sequencer daemon can be used to serialize
* commands sent over various paralell communication channels to a
* single command output. It can be seen as a multiplexer for any
* kind of communication between a single resource and various clients
* which want to submit commands to it or query information from it.
- * gcsd is written in C and Lua. The goal is to provide an easy to
+ * gcsd is written in C and Lua. The goal is to provide an easy to
* understand high level API based on Lua which can be used to
* implement the business logic of the so formed multiplexer daemon.
- *
+ *
*
* Copyright (C) 2009-2010 Markus Grueneis <gimpf@spreadspace.org>
* Christian Pointner <equinox@spreadspace.org>
@@ -192,7 +192,7 @@ int main_loop(options_t* opt)
int ret = init_main_loop(L);
if(!ret)
ret = call_main_loop(L, opt);
-
+
lua_close(L);
return ret;
}
@@ -214,7 +214,7 @@ int main(int argc, char* argv[])
options_print_version();
}
- if(ret != -2 && ret != -3)
+ if(ret != -2 && ret != -3)
options_print_usage();
if(ret == -1 || ret == -3)
@@ -234,7 +234,7 @@ int main(int argc, char* argv[])
case -4: fprintf(stderr, "this log target is only allowed once: '%s', exitting\n", tmp->string_); break;
default: fprintf(stderr, "syntax error near: '%s', exitting\n", tmp->string_); break;
}
-
+
options_clear(&opt);
log_close();
exit(ret);
@@ -275,7 +275,7 @@ int main(int argc, char* argv[])
options_clear(&opt);
log_close();
exit(-1);
- }
+ }
if(opt.daemonize_) {
pid_t oldpid = getpid();