summaryrefslogtreecommitdiff
path: root/amiga/gui.c
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2015-02-21 12:21:14 +0000
committerChris Young <chris@unsatisfactorysoftware.co.uk>2015-02-21 12:21:14 +0000
commit90d88f32d126fae1de2f8984f5d55d7a72f98578 (patch)
tree0848414be894b287bda144956aa168cac91a247e /amiga/gui.c
parent555276b04afa0070f3c0787cde79a09c83d32148 (diff)
downloadnetsurf-90d88f32d126fae1de2f8984f5d55d7a72f98578.tar.gz
netsurf-90d88f32d126fae1de2f8984f5d55d7a72f98578.tar.bz2
Expand ARexx script locations on NetSurf's process.
This resolves a problem with scripts sometimes not running when they are relative to PROGDIR: and stops PROGDIR: being requested under OS3. Fixes #2271
Diffstat (limited to 'amiga/gui.c')
-rw-r--r--amiga/gui.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/amiga/gui.c b/amiga/gui.c
index 2f2524fe1..c1169b947 100644
--- a/amiga/gui.c
+++ b/amiga/gui.c
@@ -580,13 +580,13 @@ static nserror ami_set_options(struct nsoption_s *defaults)
nsoption_setnull_charp(url_file,
(char *)strdup(temp));
- nsoption_setnull_charp(ca_bundle,
- (char *)strdup("PROGDIR:Resources/ca-bundle"));
-
sprintf(temp, "%s/FontGlyphCache", current_user_dir);
nsoption_setnull_charp(font_unicode_file,
(char *)strdup(temp));
+ nsoption_setnull_charp(ca_bundle,
+ (char *)strdup("PROGDIR:Resources/ca-bundle"));
+
/* font defaults */
#ifdef __amigaos4__
nsoption_setnull_charp(font_sans, (char *)strdup("DejaVu Sans"));