From 884833859c8a55c20a55b8cc6f85ff276557e4b4 Mon Sep 17 00:00:00 2001 From: "jefft%netscape.com" Date: Fri, 9 Apr 1999 22:05:43 +0000 Subject: [PATCH] (not part of the build yet) fixed typo for AllocateCanonicallFolderPath --- mailnews/imap/src/nsImapServerResponseParser.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mailnews/imap/src/nsImapServerResponseParser.cpp b/mailnews/imap/src/nsImapServerResponseParser.cpp index 93390b30c49b..fce81bdb19a5 100644 --- a/mailnews/imap/src/nsImapServerResponseParser.cpp +++ b/mailnews/imap/src/nsImapServerResponseParser.cpp @@ -845,7 +845,7 @@ void nsImapServerResponseParser::mailbox(mailbox_spec *boxSpec) NS_ASSERTION(boxSpec->connection->GetCurrentUrl(), "box spec has connection with null url"); //boxSpec->hostName = nsnull; //if (boxSpec->connection && boxSpec->connection->GetCurrentUrl()) - boxSpec->connection->GetCurrentUrl()->AllocateCannonicalPath(boxname, boxSpec->hierarchySeparator, &boxSpec->allocatedPathName); + boxSpec->connection->GetCurrentUrl()->AllocateCanonicalPath(boxname, boxSpec->hierarchySeparator, &boxSpec->allocatedPathName); boxSpec->connection->GetCurrentUrl()->GetHost(&boxSpec->hostName); PR_FREEIF( boxname); // storage for the boxSpec is now owned by server connection @@ -2206,7 +2206,7 @@ struct mailbox_spec *nsImapServerResponseParser::CreateCurrentMailboxSpec(const char *convertedName = fServerConnection.CreateUtf7ConvertedString(mailboxNameToConvert, PR_FALSE); if (convertedName) { - fServerConnection.GetCurrentUrl()->AllocateCannonicalPath(convertedName, returnSpec->hierarchySeparator, &convertedMailboxName); + fServerConnection.GetCurrentUrl()->AllocateCanonicalPath(convertedName, returnSpec->hierarchySeparator, &convertedMailboxName); PR_Free(convertedName); } }