Sisyphus repository
Last update: 1 october 2023 | SRPMs: 18631 | Visits: 37399112
en ru br
ALT Linux repos
S:5.4.2-alt1
5.0: 4.2.5-alt1
4.1: 4.2.5-alt1

Group :: System/Libraries
RPM: jss

 Main   Changelog   Spec   Patches   Sources   Download   Gear   Bugs and FR  Repocop 

Patch: jss-bad-error-string-pointer.patch
Download


--- jss-4.2.6.orig/mozilla/security/jss/org/mozilla/jss/ssl/SSLServerSocket.c	2010-11-17 18:54:56.000000000 -0500
+++ jss-4.2.6/mozilla/security/jss/org/mozilla/jss/ssl/SSLServerSocket.c	2010-11-18 09:46:34.000000000 -0500
@@ -124,20 +124,16 @@
             /* Clean up after PR_interrupt. */
             PR_NT_CancelIo(sock->fd);
 #endif
-            JSSL_throwSSLSocketException(env, 
-                "Accept operation interrupted with error code " + err);
+            JSSL_throwSSLSocketException(env, "Accept operation interrupted");
         } else if( err == PR_IO_TIMEOUT_ERROR ) {
 #ifdef WINNT
             PR_NT_CancelIo(sock->fd);
 #endif
-            JSSL_throwSSLSocketException(env, 
-                "Accept operation timed out with error code " + err);
+            JSSL_throwSSLSocketException(env, "Accept operation timed out");
         } else if( err == PR_IO_ERROR ) {
-            JSSL_throwSSLSocketException(env, 
-                "Accept operation received IO error with error code " + err);
+            JSSL_throwSSLSocketException(env, "Accept operation received IO error");
         } else {
-            JSSL_throwSSLSocketException(env, 
-                "Accept operation failed with error code " + err);
+            JSSL_throwSSLSocketException(env, "Accept operation failed");
         }
         goto finish;
     }
 
design & coding: Vladimir Lettiev aka crux © 2004-2005, Andrew Avramenko aka liks © 2007-2008
current maintainer: Michael Shigorin