зеркало из https://github.com/mozilla/pjs.git
fix my printf.
This commit is contained in:
Родитель
151cbe7abe
Коммит
7eb83d6419
|
@ -726,9 +726,15 @@ nsMsgIncomingServer::Equals(nsIMsgIncomingServer *server, PRBool *_retval)
|
||||||
|
|
||||||
// compare the server keys
|
// compare the server keys
|
||||||
if (PL_strcmp((const char *)key1,(const char *)key2)) {
|
if (PL_strcmp((const char *)key1,(const char *)key2)) {
|
||||||
|
#ifdef DEBUG_seth
|
||||||
|
printf("%s and %s are different, servers are not the same\n",(const char *)key1,(const char *)key2);
|
||||||
|
#endif /* DEBUG_seth */
|
||||||
*_retval = PR_FALSE;
|
*_retval = PR_FALSE;
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
#ifdef DEBUG_seth
|
||||||
|
printf("%s and %s are equal, servers are the same\n",(const char *)key1,(const char *)key2);
|
||||||
|
#endif /* DEBUG_seth */
|
||||||
*_retval = PR_TRUE;
|
*_retval = PR_TRUE;
|
||||||
}
|
}
|
||||||
return rv;
|
return rv;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче