From a79a33e8f4da016e4ae42b061db8400337d5a580 Mon Sep 17 00:00:00 2001 From: Lukas Fleischer Date: Tue, 17 Jan 2012 00:41:19 +0100 Subject: Split note file generation into separate function We currently use this in one place only but might reuse this a couple of times later (when migrating to libical). Signed-off-by: Lukas Fleischer --- src/ical.c | 15 +++------------ 1 file changed, 3 insertions(+), 12 deletions(-) (limited to 'src/ical.c') diff --git a/src/ical.c b/src/ical.c index a40f94a..8d1735b 100644 --- a/src/ical.c +++ b/src/ical.c @@ -37,7 +37,6 @@ #include #include "calcurse.h" -#include "sha1.h" #define ICALDATEFMT "%Y%m%d" #define ICALDATETIMEFMT "%Y%m%dT%H%M%S" @@ -866,9 +865,7 @@ static char * ical_read_note (char *line, unsigned *noskipped, ical_vevent_e item_type, const int itemline, FILE *log) { - char *sha1 = mem_malloc (SHA1_DIGESTLEN * 2 + 1); - char *p, *notestr, fullnotename[BUFSIZ]; - FILE *fdo; + char *p, *notestr, *note; if ((p = strchr (line, ':')) != NULL) { @@ -888,15 +885,9 @@ ical_read_note (char *line, unsigned *noskipped, ical_vevent_e item_type, } else { - sha1_digest (notestr, sha1); - snprintf (fullnotename, BUFSIZ, "%s%s", path_notes, sha1); - fdo = fopen (fullnotename, "w"); - EXIT_IF (fdo == NULL, _("Warning: could not open %s, Aborting..."), - fullnotename); - fprintf (fdo, "%s", notestr); - file_close (fdo, __FILE_POS__); + note = generate_note (notestr); mem_free (notestr); - return sha1; + return note; } } else -- cgit v1.2.3-54-g00ecf