mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

32 lines
1.1 KiB

  1. --- ./src/socket.cpp.orig 2003-06-16 19:09:46.000000000 +0200
  2. +++ ./src/socket.cpp 2004-07-14 18:13:25.755288679 +0200
  3. @@ -1078,7 +1078,7 @@
  4. bool TCPSocket::SecureConnect()
  5. {
  6. pthread_mutex_init(&mutex_ssl, NULL);
  7. - m_pSSL = SSL_new(gSSL_CTX);
  8. + m_p_SSL = SSL_new(gSSL_CTX);
  9. #ifdef SSL_DEBUG
  10. m_pSSL->debug = 1;
  11. #endif
  12. @@ -1111,7 +1111,7 @@
  13. {
  14. pthread_mutex_init(&mutex_ssl, NULL);
  15. - m_pSSL = SSL_new(gSSL_CTX);
  16. + m_p_SSL = SSL_new(gSSL_CTX);
  17. SSL_set_session(m_pSSL, NULL);
  18. SSL_set_fd(m_pSSL, m_nDescriptor);
  19. int i = SSL_accept(m_pSSL);
  20. --- ./src/user.cpp.orig 2003-06-16 19:09:46.000000000 +0200
  21. +++ ./src/user.cpp 2004-07-14 18:16:41.356402533 +0200
  22. @@ -3184,7 +3184,9 @@
  23. m_fConf.ReadBool("HideIP", m_bHideIp, false);
  24. m_fConf.ReadNum("RCG", m_nRandomChatGroup, ICQ_RANDOMxCHATxGROUP_NONE);
  25. m_fConf.ReadStr("AutoResponse", szTemp, "");
  26. - m_fConf.ReadNum("SSTime", (unsigned long)m_nSSTime, 0L);
  27. + long unsigned int t = m_nSSTime;
  28. + m_fConf.ReadNum("SSTime", t, 0L);
  29. + m_nSSTime = t;
  30. m_fConf.ReadNum("SSCount", m_nSSCount, 0);
  31. SetAutoResponse(szTemp);