Mac build fixes (bug 4392, r=dvander).

This commit is contained in:
Fyren
2010-05-11 01:46:54 -07:00
parent f06af54165
commit 26c404adee
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -165,7 +165,7 @@ bool CookieManager::GetCookieValue(Cookie *pCookie, int client, char **value)
return true;
}
bool CookieManager::SetCookieValue(Cookie *pCookie, int client, char *value)
bool CookieManager::SetCookieValue(Cookie *pCookie, int client, const char *value)
{
assert(pCookie);
+1 -1
View File
@@ -118,7 +118,7 @@ public:
void OnClientDisconnecting(int client);
bool GetCookieValue(Cookie *pCookie, int client, char **value);
bool SetCookieValue(Cookie *pCookie, int client, char *value);
bool SetCookieValue(Cookie *pCookie, int client, const char *value);
bool GetCookieTime(Cookie *pCookie, int client, time_t *value);
void Unload();