--- dayeditor.c.orig Thu Apr 26 02:16:46 2001 +++ dayeditor.c Thu Apr 26 02:32:47 2001 @@ -253,12 +253,12 @@ if (calendarDir == NULL) { if (appResources.calendarDir == NULL) { - /* open the ~/Calendar directory - create if necessary */ + /* open the ~/.desk/Calendar directory - create if necessary */ homedir = getenv("HOME"); - calendarDir = XtMalloc(strlen(homedir) + 10); + calendarDir = XtMalloc(strlen(homedir) + 16); strcpy(calendarDir, homedir); - strcat(strcat(calendarDir, "/"), "Calendar"); + strcat(calendarDir, "/.desk/Calendar"); } else { calendarDir = XtMalloc(strlen(appResources.calendarDir) + 3); strcpy(calendarDir, appResources.calendarDir);