Fix some warnings blamed on me that were pointed out by bsmedberg's warning-blame scripts. Trivial change, no review, testingonly anyway

This commit is contained in:
Jeff Walden 2008-12-22 10:58:09 -08:00
parent df9b87090d
commit 467441f46e

View File

@ -229,7 +229,6 @@ void HandleConnection(void* data)
{
connection_info_t* ci = static_cast<connection_info_t*>(data);
PRIntervalTime connect_timeout = PR_SecondsToInterval(2);
PRIntervalTime short_timeout = PR_MillisecondsToInterval(250);
AutoFD other_sock(PR_NewTCPSocket());
bool client_done = false;
@ -489,7 +488,7 @@ char* password_func(PK11SlotInfo* slot, PRBool retry, void* arg)
if (retry)
return NULL;
return "";
return PL_strdup("");
}
server_info_t* findServerInfo(int portnumber)