From f295b6af47f47dbefb7311adfa8f0be07954d07c Mon Sep 17 00:00:00 2001 From: "jefft%netscape.com" Date: Thu, 4 Nov 1999 19:47:21 +0000 Subject: [PATCH] fixed bug 15069 && 12345 -- passing in file:/// instead of file:// as the file url spec; r=bienvenu, a=chofmann git-svn-id: svn://10.0.0.236/trunk@52795 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/mailnews/mime/src/mimedrft.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mozilla/mailnews/mime/src/mimedrft.cpp b/mozilla/mailnews/mime/src/mimedrft.cpp index 95cc5f9a58c..0302f06639c 100644 --- a/mozilla/mailnews/mime/src/mimedrft.cpp +++ b/mozilla/mailnews/mime/src/mimedrft.cpp @@ -1670,7 +1670,7 @@ mime_decompose_file_init_fn ( void *stream_closure, MimeHeaders *headers ) // if ( (tmpSpec) && (!bodyPart) ) if (tmpSpec) { - char *tmpSpecStr = PR_smprintf("file://%s", tmpSpec->GetNativePathCString()); + char *tmpSpecStr = PR_smprintf("file:///%s", tmpSpec->GetNativePathCString()); if (tmpSpecStr) {