diff options
author | Frederic Culot <calcurse@culot.org> | 2009-05-22 19:59:17 +0000 |
---|---|---|
committer | Frederic Culot <calcurse@culot.org> | 2009-05-22 19:59:17 +0000 |
commit | 3f6aff84e65e7650f7110768646b86ece6b4dc8f (patch) | |
tree | e6fe92b787c413f7e005eda32050acd5b76cceef /src/recur.c | |
parent | bb586b92b5714d1f33da2518206c364146de081b (diff) | |
download | calcurse-3f6aff84e65e7650f7110768646b86ece6b4dc8f.zip |
The buffer should be allocated dynamically, but I am quite busy right now :'( Anyway, thanks Kamil for feedback
Diffstat (limited to 'src/recur.c')
-rwxr-xr-x | src/recur.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/recur.c b/src/recur.c index 8e3552d..300e7a8 100755 --- a/src/recur.c +++ b/src/recur.c @@ -1,4 +1,4 @@ -/* $calcurse: recur.c,v 1.49 2009/01/03 21:32:11 culot Exp $ */ +/* $calcurse: recur.c,v 1.50 2009/05/22 19:59:18 culot Exp $ */ /* * Calcurse - text-based organizer @@ -414,14 +414,14 @@ recur_apoint_scan (FILE *f, struct tm start, struct tm end, char type, char state) { struct tm *lt; - char buf[MESG_MAXSIZE], *nl; + char buf[BUFSIZ], *nl; time_t tstart, tend, t, tuntil; t = time (NULL); lt = localtime (&t); /* Read the appointment description */ - (void)fgets (buf, MESG_MAXSIZE, f); + (void)fgets (buf, sizeof buf, f); nl = strchr (buf, '\n'); if (nl) { @@ -462,11 +462,11 @@ struct recur_event_s * recur_event_scan (FILE *f, struct tm start, int id, char type, int freq, struct tm until, char *note, struct days_s **exc) { - char buf[MESG_MAXSIZE], *nl; + char buf[BUFSIZ], *nl; time_t tstart, tuntil; /* Read the event description */ - (void)fgets (buf, MESG_MAXSIZE, f); + (void)fgets (buf, sizeof buf, f); nl = strchr (buf, '\n'); if (nl) { |