]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - play.c
play: Create ~/.paraslash.
[paraslash.git] / play.c
diff --git a/play.c b/play.c
index 2346c6b0101045d51e87b5d40abb5b983df6f014..7369c33fe7f3ee2d30505de21e692ce48f33428a 100644 (file)
--- a/play.c
+++ b/play.c
@@ -1051,9 +1051,16 @@ static void session_open(void)
                history_file = para_strdup(OPT_STRING_VAL(HISTORY_FILE));
        else {
                char *home = para_homedir();
-               history_file = make_message("%s/.paraslash/play.history",
-                       home);
+               char *dot_para = make_message("%s/.paraslash", home);
+
                free(home);
+               ret = para_mkdir(dot_para, 0777);
+               /* warn, but otherwise ignore mkdir error */
+               if (ret < 0 && ret != -ERRNO_TO_PARA_ERROR(EEXIST))
+                       PARA_WARNING_LOG("Can not create %s: %s\n", dot_para,
+                               para_strerror(-ret));
+               history_file = make_message("%s/play.history", dot_para);
+               free(dot_para);
        }
        ici.history_file = history_file;
        ici.loglevel = loglevel;