export to /tmp/calcurse.ics is now performed in case /home/pepe is not set
This commit is contained in:
parent
b69a59b34e
commit
5e62e11e23
10
src/io.c
10
src/io.c
@ -1,4 +1,4 @@
|
||||
/* $calcurse: io.c,v 1.21 2007/08/15 15:36:27 culot Exp $ */
|
||||
/* $calcurse: io.c,v 1.22 2007/09/16 15:41:53 culot Exp $ */
|
||||
|
||||
/*
|
||||
* Calcurse - text-based organizer
|
||||
@ -128,10 +128,10 @@ io_get_export_stream(void)
|
||||
|
||||
stream = NULL;
|
||||
stream_name = (char *)malloc(BUFSIZ);
|
||||
home = getenv("HOME");
|
||||
if (home == NULL)
|
||||
home = ".";
|
||||
snprintf(stream_name, BUFSIZ, "%s/calcurse.ics", home);
|
||||
if ((home = getenv("HOME")) != NULL)
|
||||
snprintf(stream_name, BUFSIZ, "%s/calcurse.ics", home);
|
||||
else
|
||||
snprintf(stream_name, BUFSIZ, "/tmp/calcurse.ics");
|
||||
|
||||
while (stream == NULL) {
|
||||
status_mesg(question, "");
|
||||
|
Loading…
x
Reference in New Issue
Block a user