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.

tigervnc11-rh692048.patch 2.1KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. diff -up tigervnc-1.0.90-20110314svn4359/common/rfb/SecurityClient.cxx.rh690245 tigervnc-1.0.90-20110314svn4359/common/rfb/SecurityClient.cxx
  2. --- tigervnc-1.0.90-20110314svn4359/common/rfb/SecurityClient.cxx.rh690245 2011-02-21 14:14:16.000000000 +0100
  3. +++ tigervnc-1.0.90-20110314svn4359/common/rfb/SecurityClient.cxx 2011-03-31 09:47:34.519099718 +0200
  4. @@ -45,7 +45,7 @@ StringParameter SecurityClient::secTypes
  5. ("SecurityTypes",
  6. "Specify which security scheme to use (None, VncAuth)",
  7. #ifdef HAVE_GNUTLS
  8. - "X509Plain,TLSPlain,X509Vnc,TLSVnc,X509None,TLSNone,VncAuth,None",
  9. + "VeNCrypt,X509Plain,TLSPlain,X509Vnc,TLSVnc,X509None,TLSNone,VncAuth,None",
  10. #else
  11. "VncAuth,None",
  12. #endif
  13. diff -up tigervnc-1.0.90-20110314svn4359/common/rfb/Security.cxx.rh690245 tigervnc-1.0.90-20110314svn4359/common/rfb/Security.cxx
  14. --- tigervnc-1.0.90-20110314svn4359/common/rfb/Security.cxx.rh690245 2011-02-21 14:14:16.000000000 +0100
  15. +++ tigervnc-1.0.90-20110314svn4359/common/rfb/Security.cxx 2011-03-31 09:47:34.519099718 +0200
  16. @@ -67,7 +67,6 @@ const std::list<rdr::U8> Security::GetEn
  17. list<rdr::U8> result;
  18. list<U32>::iterator i;
  19. - result.push_back(secTypeVeNCrypt);
  20. for (i = enabledSecTypes.begin(); i != enabledSecTypes.end(); i++)
  21. if (*i < 0x100)
  22. result.push_back(*i);
  23. @@ -105,8 +104,6 @@ bool Security::IsSupported(U32 secType)
  24. for (i = enabledSecTypes.begin(); i != enabledSecTypes.end(); i++)
  25. if (*i == secType)
  26. return true;
  27. - if (secType == secTypeVeNCrypt)
  28. - return true;
  29. return false;
  30. }
  31. diff -up tigervnc-1.0.90-20110314svn4359/common/rfb/SecurityServer.cxx.rh690245 tigervnc-1.0.90-20110314svn4359/common/rfb/SecurityServer.cxx
  32. --- tigervnc-1.0.90-20110314svn4359/common/rfb/SecurityServer.cxx.rh690245 2011-02-21 14:50:17.000000000 +0100
  33. +++ tigervnc-1.0.90-20110314svn4359/common/rfb/SecurityServer.cxx 2011-03-31 10:06:43.595362302 +0200
  34. @@ -39,7 +39,7 @@ StringParameter SecurityServer::secTypes
  35. ("SecurityTypes",
  36. "Specify which security scheme to use (None, VncAuth)",
  37. #ifdef HAVE_GNUTLS
  38. - "VncAuth,TLSVnc",
  39. + "VncAuth",
  40. #else
  41. "VncAuth",
  42. #endif