diff options
author | Frederic Culot <calcurse@culot.org> | 2009-08-01 17:53:11 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2009-08-01 17:53:11 +0000 |
commit | 55d6703fad50e800a6adcc064abe060eab7d27d1 (patch) | |
tree | e56b9f4175eedadea928057c0b00b156aaf32f28 /src | |
parent | 989b6c885f06f887cb8dafcd69059c376988d938 (diff) | |
download | calcurse-55d6703fad50e800a6adcc064abe060eab7d27d1.tar.gz calcurse-55d6703fad50e800a6adcc064abe060eab7d27d1.zip |
Start and log daemon activity only if requested.
Diffstat (limited to 'src')
-rw-r--r-- | src/dmon.c | 8 | ||||
-rwxr-xr-x | src/utils.c | 5 |
2 files changed, 8 insertions, 5 deletions
@@ -1,4 +1,4 @@ -/* $calcurse: dmon.c,v 1.9 2009/08/01 13:31:20 culot Exp $ */ +/* $calcurse: dmon.c,v 1.10 2009/08/01 17:53:11 culot Exp $ */ /* * Calcurse - text-based organizer @@ -56,7 +56,8 @@ #define DMON_SLEEP_TIME 60 #define DMON_LOG(...) do { \ - (void)io_fprintln (path_dmon_log, __VA_ARGS__); \ + if (dmon.log) \ + (void)io_fprintln (path_dmon_log, __VA_ARGS__); \ } while (0) #define DMON_ABRT(...) do { \ @@ -181,7 +182,8 @@ dmon_start (int parent_exit_status) recur_apoint_llist_init (); io_load_app (); data_loaded = 1; - + + DMON_LOG (_("started at %s\n"), nowstr ()); for (;;) { int left; diff --git a/src/utils.c b/src/utils.c index 37eab66..2354ad1 100755 --- a/src/utils.c +++ b/src/utils.c @@ -1,4 +1,4 @@ -/* $calcurse: utils.c,v 1.81 2009/07/27 19:35:09 culot Exp $ */ +/* $calcurse: utils.c,v 1.82 2009/08/01 17:53:11 culot Exp $ */ /* * Calcurse - text-based organizer @@ -88,7 +88,8 @@ exit_calcurse (int status) if (unlink (path_cpid) != 0) EXIT (_("Could not remove calcurse lock file: %s\n"), strerror (errno)); - dmon_start (status); + if (dmon.enable) + dmon_start (status); } exit (status); |