From 95e4a737de53dc2f02a2db95b26151d9d494bc0c Mon Sep 17 00:00:00 2001 From: Vincent Sanders Date: Wed, 31 Mar 2010 13:59:57 +0000 Subject: rationalise the usage of the file scheme svn path=/trunk/netsurf/; revision=10221 --- amiga/misc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'amiga') diff --git a/amiga/misc.c b/amiga/misc.c index f492fcf8a..fb4b86ff4 100755 --- a/amiga/misc.c +++ b/amiga/misc.c @@ -76,9 +76,9 @@ char *url_to_path(const char *url) char *path_to_url(const char *path) { - char *r = malloc(strlen(path) + 8 + 1); + char *r = malloc(strlen(path) + FILE_SCHEME_PREFIX_LEN + 1); - strcpy(r, "file:///"); + strcpy(r, FILE_SCHEME_PREFIX); strcat(r, path); return r; -- cgit v1.2.3