giving up on mac for now, backing out some but not all of the changes

This commit is contained in:
morse%netscape.com 1998-08-30 07:09:27 +00:00
Родитель 744e8b349d
Коммит d8b702b5c4
1 изменённых файлов: 4 добавлений и 0 удалений

Просмотреть файл

@ -3816,6 +3816,9 @@ struct _CookieViewerDialog {
*/
char *GetTrustLabelString(char *CookieName)
{
#ifdef XP_MAC
return NULL;
#else
XP_List * list_ptr, *Tptr;
TrustEntry *TEntry;
net_CookiePermissionStruct *cookperm;
@ -4064,6 +4067,7 @@ char *GetTrustLabelString(char *CookieName)
PR_FREEIF(szBy);
return szTemp;
#endif
}