blob: 8b7eeed9441e69013eba9eb86b158498679257b5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
$NetBSD: patch-aa,v 1.3 2000/11/23 18:28:54 mycroft Exp $
--- ee_conf.c.orig Wed Mar 31 12:15:14 1999
+++ ee_conf.c Wed Mar 31 12:22:10 1999
@@ -10,6 +10,9 @@
#include <ee_image.h>
#include <stdio.h>
#include <stdlib.h>
+#include <errno.h>
+#include <sys/types.h>
+#include <sys/stat.h>
#include "globals.h"
#include "functions.h"
@@ -25,10 +28,16 @@
gchar *hom;
gchar *s;
FILE *f;
+ struct stat sb;
+ int i;
hom = homedir(getuid());
if (!hom)
return;
+ s = g_strconcat(hom, "/.ee", NULL);
+ i = stat(s, &sb);
+ if (i == -1 && errno == ENOENT)
+ mkdir(s, S_IRWXU);
s = g_strconcat(hom, "/.ee/settings", NULL);
g_free(hom);
f = fopen(s, "w");
|