From a3308d77b9c28698849027b7d4b1c8d86d9d1064 Mon Sep 17 00:00:00 2001 From: "waqar%netscape.com" Date: Thu, 1 Apr 1999 19:03:33 +0000 Subject: [PATCH] Changed C++ comments to C comments --- mailnews/mime/cthandlers/vcard/oldxp.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/mailnews/mime/cthandlers/vcard/oldxp.c b/mailnews/mime/cthandlers/vcard/oldxp.c index c6f61b8126c7..952b312028dd 100644 --- a/mailnews/mime/cthandlers/vcard/oldxp.c +++ b/mailnews/mime/cthandlers/vcard/oldxp.c @@ -81,7 +81,7 @@ WH_FileName (const char *NetName, XP_FileType type) return PL_strdup("cookies"); #endif } else if (type == xpCacheFAT) { -;// sprintf(newName, "%s\\fat.db", (const char *)theApp.m_pCacheDir); +;/* sprintf(newName, "%s\\fat.db", (const char *)theApp.m_pCacheDir); */ } else if ((type == xpURL) || (type == xpFileToPost)) { /* @@ -94,17 +94,17 @@ WH_FileName (const char *NetName, XP_FileType type) if(!NetName) return NULL; - // If the name is only '/' or begins '//' keep the - // whole name else strip the leading '/' + /* If the name is only '/' or begins '//' keep the + whole name else strip the leading '/' */ if(NetName[0] == '/') bChopSlash = PR_TRUE; - // save just / as a path + /* save just / as a path */ if(NetName[0] == '/' && NetName[1] == '\0') bChopSlash = PR_FALSE; - // spanky Win9X path name + /* spanky Win9X path name */ if(NetName[0] == '/' && NetName[1] == '/') bChopSlash = PR_FALSE;