about summary refs log tree commit diff stats
path: root/about.c
diff options
context:
space:
mode:
authorMarco Peereboom <marco@conformal.com>2012-01-24 15:16:57 -0600
committerMarco Peereboom <marco@conformal.com>2012-01-24 15:16:57 -0600
commitd687d46316edad2fbd5d2a6c1357b9dc5900ee62 (patch)
treeab7302e230a033acb16e4a2a7e2171fd1c77fe4f /about.c
parent3744fef66ef58af9ea56286637efef0e2e4d0101 (diff)
downloadxombrero-d687d46316edad2fbd5d2a6c1357b9dc5900ee62.tar.gz
also fixup PS over here
Diffstat (limited to 'about.c')
-rw-r--r--about.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/about.c b/about.c
index 411092f..8e2dcce 100644
--- a/about.c
+++ b/about.c
@@ -189,7 +189,7 @@ load_webkit_string(struct tab *t, const char *str, gchar *title)
 		gtk_spinner_stop(GTK_SPINNER(t->spinner));
 		gtk_widget_hide(t->spinner);
 #endif
-		snprintf(file, sizeof file, "%s/%s", resource_dir, icons[0]);
+		snprintf(file, sizeof file, "%s" PS "%s", resource_dir, icons[0]);
 		xt_icon_from_file(t, file);
 	}
 }
@@ -577,7 +577,7 @@ remove_favorite(struct tab *t, int index)
 	size_t			len, lineno;
 
 	/* open favorites */
-	snprintf(file, sizeof file, "%s/%s", work_dir, XT_FAVS_FILE);
+	snprintf(file, sizeof file, "%s" PS "%s", work_dir, XT_FAVS_FILE);
 
 	if ((f = fopen(file, "r")) == NULL) {
 		show_oops(t, "%s: can't open favorites: %s",
@@ -661,7 +661,7 @@ add_favorite(struct tab *t, struct karg *args)
 		return (1);
 	}
 
-	snprintf(file, sizeof file, "%s/%s", work_dir, XT_FAVS_FILE);
+	snprintf(file, sizeof file, "%s" PS "%s", work_dir, XT_FAVS_FILE);
 	if ((f = fopen(file, "r+")) == NULL) {
 		show_oops(t, "Can't open favorites file: %s", strerror(errno));
 		return (1);
@@ -967,7 +967,7 @@ xtp_page_fl(struct tab *t, struct karg *args)
 		generate_xtp_session_key(&fl_session_key);
 
 	/* open favorites */
-	snprintf(file, sizeof file, "%s/%s", work_dir, XT_FAVS_FILE);
+	snprintf(file, sizeof file, "%s" PS "%s", work_dir, XT_FAVS_FILE);
 	if ((f = fopen(file, "r")) == NULL) {
 		show_oops(t, "Can't open favorites file: %s", strerror(errno));
 		return (1);
3071'>6fef33fd ^
7a84094a ^

6fef33fd ^

45c08fea ^
7a84094a ^
a0331a9b ^
e3092e7b ^

a0331a9b ^
77d5b5d6 ^
4a48bedc ^
760f683f ^
0d2686c7 ^
e3092e7b ^

d803b687 ^
77d5b5d6 ^
4a48bedc ^
e3092e7b ^
104854ca ^
7a84094a ^
a0331a9b ^
e3092e7b ^
7a84094a ^
80df524b ^
502d2ea5 ^
760f683f ^
dd660682 ^
e3092e7b ^
0d2686c7 ^


dd660682 ^
e3092e7b ^
6aa42628 ^
80df524b ^
dd660682 ^
e3092e7b ^

c6c19a27 ^


d803b687 ^
77d5b5d6 ^
4a48bedc ^
d803b687 ^


80df524b ^
dd660682 ^

e3092e7b ^
f8c0ef3e ^
760f683f ^
77d5b5d6 ^
4a48bedc ^
f8c0ef3e ^
d803b687 ^
502d2ea5 ^


136412d2 ^
502d2ea5 ^
f8c0ef3e ^

5b1219ca ^
f8c0ef3e ^
6a0f71b9 ^
760f683f ^
77d5b5d6 ^
4a48bedc ^
6a0f71b9 ^
d803b687 ^
ccfee303 ^


6a0f71b9 ^

5e9eff8c ^
760f683f ^
77d5b5d6 ^
4a48bedc ^
dd660682 ^
104854ca ^
5e9eff8c ^
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104