aboutsummaryrefslogtreecommitdiffstats
path: root/src/recur.c
diff options
context:
space:
mode:
authorFrederic Culot <calcurse@culot.org>2006-09-07 14:08:55 +0000
committerFrederic Culot <calcurse@culot.org>2006-09-07 14:08:55 +0000
commitd25fb8baf57101370648067cc7bfe253ae7cd7e6 (patch)
tree0768a23fa7477ee4ad52600e608f1cad0756955c /src/recur.c
parent60603b2dae1b973cef15141ecce847bab4b98ce0 (diff)
downloadcalcurse-d25fb8baf57101370648067cc7bfe253ae7cd7e6.tar.gz
calcurse-d25fb8baf57101370648067cc7bfe253ae7cd7e6.zip
bugfix: the repeated end date can no longer be older then the item start
time. Thanks Chris for reporting that bug
Diffstat (limited to 'src/recur.c')
-rwxr-xr-xsrc/recur.c13
1 files changed, 11 insertions, 2 deletions
diff --git a/src/recur.c b/src/recur.c
index 840ae2d..611504b 100755
--- a/src/recur.c
+++ b/src/recur.c
@@ -1,4 +1,4 @@
-/* $calcurse: recur.c,v 1.7 2006/08/24 20:12:21 culot Exp $ */
+/* $calcurse: recur.c,v 1.8 2006/09/07 14:08:55 culot Exp $ */
/*
* Calcurse - text-based organizer
@@ -515,6 +515,8 @@ void recur_repeat_item(int sel_year, int sel_month, int sel_day,
_("Possible formats are [mm/dd/yyyy] or '0' for an endless repetetition");
char *wrong_type_1 = _("This item is already a repeated one.");
char *wrong_type_2 = _("Press [ENTER] to continue.");
+ char *mesg_older =
+ _("Sorry, the date you entered is older than the item start time.");
int type = 0, freq = 0;
struct day_item_s *p;
struct recur_apoint_s *ra;
@@ -570,7 +572,14 @@ void recur_repeat_item(int sel_year, int sel_month, int sel_day,
sscanf(user_input, "%d / %d / %d",
&month, &day, &year);
until = date2sec(year, month, day, 0, 0);
- date_entered = 1;
+ if (until < p->start) {
+ status_mesg(mesg_older,
+ wrong_type_2);
+ wgetch(swin);
+ date_entered = 0;
+ } else {
+ date_entered = 1;
+ }
} else {
status_mesg(mesg_wrong_1, mesg_wrong_2);
date_entered = 0;