Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 89940 | Differences between
and this patch

Collapse All | Expand All

(-)mozilla/security/jss/org/mozilla/jss/ssl/SSLTest.java.orig (-3 / +3 lines)
Lines 66-75 Link Here
66
    }
66
    }
67
67
68
    private void dumpParams() {
68
    private void dumpParams() {
69
        Enumeration enum = params.keys();
69
        Enumeration enum1 = params.keys();
70
        System.out.println("Parameters:");
70
        System.out.println("Parameters:");
71
        while (enum.hasMoreElements() ) {
71
        while (enum1.hasMoreElements() ) {
72
            String key = (String) enum.nextElement();
72
            String key = (String) enum1.nextElement();
73
            System.out.println(key + "=" + (String)params.get(key));
73
            System.out.println(key + "=" + (String)params.get(key));
74
        }
74
        }
75
    }
75
    }
(-)mozilla/security/jss/org/mozilla/jss/ssl/SSLSocket.java.orig (-3 / +3 lines)
Lines 686-695 Link Here
686
    protected void finalize() throws Throwable { }
686
    protected void finalize() throws Throwable { }
687
687
688
    public static class CipherPolicy {
688
    public static class CipherPolicy {
689
        private int enum;
689
        private int enum1;
690
        private CipherPolicy(int enum) { }
690
        private CipherPolicy(int enum1) { }
691
691
692
        int getEnum() { return enum; }
692
        int getEnum() { return enum1; }
693
693
694
        public static final CipherPolicy DOMESTIC =
694
        public static final CipherPolicy DOMESTIC =
695
            new CipherPolicy(SocketBase.SSL_POLICY_DOMESTIC);
695
            new CipherPolicy(SocketBase.SSL_POLICY_DOMESTIC);

Return to bug 89940