aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederic Culot <calcurse@culot.org>2008-08-18 07:30:07 +0000
committerFrederic Culot <calcurse@culot.org>2008-08-18 07:30:07 +0000
commit5128fb04f0ee642ad580de3092de6c8214ac6dcb (patch)
tree0e7f183f3c3e2b9679ac687cccf5deafaace15c1
parent879e2074fa981b168ca1c499502fe6d5dcd6c1c9 (diff)
downloadcalcurse-5128fb04f0ee642ad580de3092de6c8214ac6dcb.tar.gz
calcurse-5128fb04f0ee642ad580de3092de6c8214ac6dcb.zip
wrong data path init fixed (thanks Herbert for reporting it)
-rwxr-xr-xChangeLog5
-rwxr-xr-xsrc/io.c6
2 files changed, 8 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index aa895f9..7565428 100755
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2008-08-18 Frederic Culot <frederic@culot.org>
+
+ * src/io.c (io_init): wrong data path init fixed (thanks Herbert
+ for reporting it)
+
2008-08-12 Frederic Culot <frederic@culot.org>
* === Released 2.2_beta ===
diff --git a/src/io.c b/src/io.c
index 7044060..c9482a9 100755
--- a/src/io.c
+++ b/src/io.c
@@ -1,4 +1,4 @@
-/* $calcurse: io.c,v 1.32 2008/08/11 18:08:45 culot Exp $ */
+/* $calcurse: io.c,v 1.33 2008/08/18 07:30:07 culot Exp $ */
/*
* Calcurse - text-based organizer
@@ -189,7 +189,7 @@ get_export_stream (export_type_t type)
}
/* Travel through each occurence of an item, and execute the given callback
- * ( mainly used to export data).
+ * (mainly used to export data).
*/
static void
foreach_date_dump (const long date_end, struct rpt_s *rpt, struct days_s *exc,
@@ -628,7 +628,7 @@ io_init (char *cfile, char *datadir)
{
home = ".";
}
- snprintf (path_dir, BUFSIZ, "%s", home);
+ snprintf (path_dir, BUFSIZ, "%s/" DIR_NAME, home);
snprintf (path_todo, BUFSIZ, "%s/" TODO_PATH, home);
snprintf (path_conf, BUFSIZ, "%s/" CONF_PATH, home);
snprintf (path_notes, BUFSIZ, "%s/" NOTES_DIR, home);