aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederic Culot <calcurse@culot.org>2007-07-01 17:57:05 +0000
committerFrederic Culot <calcurse@culot.org>2007-07-01 17:57:05 +0000
commita17eb2b9cbfaf51e12cc5e7bfac56f38c52efffc (patch)
tree318c77d9c9ac65e9b46bad317a9fbb81fba67168
parent34093881f1d9c3097d42f784be124ada12e73ff1 (diff)
downloadcalcurse-a17eb2b9cbfaf51e12cc5e7bfac56f38c52efffc.tar.gz
calcurse-a17eb2b9cbfaf51e12cc5e7bfac56f38c52efffc.zip
notify_thread_app(), notify_check_repeated() and notify_same_recur_item()
modified to call get_today()
-rwxr-xr-xsrc/notify.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/notify.c b/src/notify.c
index 48129f6..919eb1e 100755
--- a/src/notify.c
+++ b/src/notify.c
@@ -1,4 +1,4 @@
-/* $calcurse: notify.c,v 1.12 2007/05/06 13:29:51 culot Exp $ */
+/* $calcurse: notify.c,v 1.13 2007/07/01 17:57:05 culot Exp $ */
/*
* Calcurse - text-based organizer
@@ -258,7 +258,7 @@ notify_thread_app(void *arg)
tmp_app = (struct notify_app_s *) malloc(sizeof(struct notify_app_s));
tmp_app->time = current_time + DAYINSEC;
tmp_app->got_app = 0;
- tmp_app = recur_apoint_check_next(tmp_app, current_time, today());
+ tmp_app = recur_apoint_check_next(tmp_app, current_time, get_today());
tmp_app = apoint_check_next(tmp_app, current_time);
pthread_mutex_lock(&notify_app->mutex);
@@ -328,7 +328,7 @@ notify_check_repeated(recur_apoint_llist_node_t *i)
current_time = time(NULL);
pthread_mutex_lock(&notify_app->mutex);
if ((real_app_time = recur_item_inday(i->start, i->exc, i->rpt->type,
- i->rpt->freq, i->rpt->until, today()) > current_time)) {
+ i->rpt->freq, i->rpt->until, get_today()) > current_time)) {
if (!notify_app->got_app) {
if (real_app_time - current_time <= DAYINSEC)
update_notify = 1;
@@ -369,7 +369,7 @@ notify_same_recur_item(recur_apoint_llist_node_t *i)
long item_start = 0;
item_start = recur_item_inday(i->start, i->exc, i->rpt->type,
- i->rpt->freq, i->rpt->until, today());
+ i->rpt->freq, i->rpt->until, get_today());
pthread_mutex_lock(&notify_app->mutex);
if (notify_app->got_app && item_start == notify_app->time)
same = 1;