mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-02-08 01:07:30 -08:00
This commit represents a new era for Gentoo: Storing the gentoo-x86 tree in Git, as converted from CVS. This commit is the start of the NEW history. Any historical data is intended to be grafted onto this point. Creation process: 1. Take final CVS checkout snapshot 2. Remove ALL ChangeLog* files 3. Transform all Manifests to thin 4. Remove empty Manifests 5. Convert all stale $Header$/$Id$ CVS keywords to non-expanded Git $Id$ 5.1. Do not touch files with -kb/-ko keyword flags. Signed-off-by: Robin H. Johnson <robbat2@gentoo.org> X-Thanks: Alec Warner <antarus@gentoo.org> - did the GSoC 2006 migration tests X-Thanks: Robin H. Johnson <robbat2@gentoo.org> - infra guy, herding this project X-Thanks: Nguyen Thai Ngoc Duy <pclouds@gentoo.org> - Former Gentoo developer, wrote Git features for the migration X-Thanks: Brian Harring <ferringb@gentoo.org> - wrote much python to improve cvs2svn X-Thanks: Rich Freeman <rich0@gentoo.org> - validation scripts X-Thanks: Patrick Lauer <patrick@gentoo.org> - Gentoo dev, running new 2014 work in migration X-Thanks: Michał Górny <mgorny@gentoo.org> - scripts, QA, nagging X-Thanks: All of other Gentoo developers - many ideas and lots of paint on the bikeshed
65 lines
3.0 KiB
Diff
65 lines
3.0 KiB
Diff
diff -uNr inetlib-1.0.orig/source/gnu/inet/imap/IMAPConnection.java inetlib-1.0/source/gnu/inet/imap/IMAPConnection.java
|
|
--- inetlib-1.0.orig/source/gnu/inet/imap/IMAPConnection.java 2006-09-19 13:18:21.512067374 +0200
|
|
+++ inetlib-1.0/source/gnu/inet/imap/IMAPConnection.java 2006-09-19 13:19:07.024373510 +0200
|
|
@@ -45,7 +45,6 @@
|
|
import java.util.Iterator;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
-import java.util.Properties;
|
|
|
|
import javax.net.ssl.SSLContext;
|
|
import javax.net.ssl.SSLSocket;
|
|
@@ -555,7 +554,7 @@
|
|
String[] m = new String[] { mechanism };
|
|
CallbackHandler ch = new SaslCallbackHandler(username, password);
|
|
// Avoid lengthy callback procedure for GNU Crypto
|
|
- Properties p = new Properties();
|
|
+ HashMap p = new HashMap();
|
|
p.put("gnu.crypto.sasl.username", username);
|
|
p.put("gnu.crypto.sasl.password", password);
|
|
SaslClient sasl = Sasl.createSaslClient(m, null, "smtp",
|
|
diff -uNr inetlib-1.0.orig/source/gnu/inet/pop3/POP3Connection.java inetlib-1.0/source/gnu/inet/pop3/POP3Connection.java
|
|
--- inetlib-1.0.orig/source/gnu/inet/pop3/POP3Connection.java 2006-09-19 13:18:21.531064997 +0200
|
|
+++ inetlib-1.0/source/gnu/inet/pop3/POP3Connection.java 2006-09-19 13:20:28.841137790 +0200
|
|
@@ -39,8 +39,8 @@
|
|
import java.security.MessageDigest;
|
|
import java.security.NoSuchAlgorithmException;
|
|
import java.util.ArrayList;
|
|
+import java.util.HashMap;
|
|
import java.util.List;
|
|
-import java.util.Properties;
|
|
|
|
import javax.net.ssl.SSLContext;
|
|
import javax.net.ssl.SSLSocket;
|
|
@@ -220,7 +220,7 @@
|
|
String[] m = new String[] { mechanism };
|
|
CallbackHandler ch = new SaslCallbackHandler (username, password);
|
|
// Avoid lengthy callback procedure for GNU Crypto
|
|
- Properties p = new Properties ();
|
|
+ HashMap p = new HashMap();
|
|
p.put ("gnu.crypto.sasl.username", username);
|
|
p.put ("gnu.crypto.sasl.password", password);
|
|
SaslClient sasl =
|
|
diff -uNr inetlib-1.0.orig/source/gnu/inet/smtp/SMTPConnection.java inetlib-1.0/source/gnu/inet/smtp/SMTPConnection.java
|
|
--- inetlib-1.0.orig/source/gnu/inet/smtp/SMTPConnection.java 2006-09-19 13:18:21.533064747 +0200
|
|
+++ inetlib-1.0/source/gnu/inet/smtp/SMTPConnection.java 2006-09-19 13:21:16.996113371 +0200
|
|
@@ -37,8 +37,8 @@
|
|
import java.security.GeneralSecurityException;
|
|
import java.util.ArrayList;
|
|
import java.util.Collections;
|
|
+import java.util.HashMap;
|
|
import java.util.List;
|
|
-import java.util.Properties;
|
|
|
|
import javax.net.ssl.SSLContext;
|
|
import javax.net.ssl.SSLSocket;
|
|
@@ -567,7 +567,7 @@
|
|
String[] m = new String[] { mechanism };
|
|
CallbackHandler ch = new SaslCallbackHandler (username, password);
|
|
// Avoid lengthy callback procedure for GNU Crypto
|
|
- Properties p = new Properties ();
|
|
+ HashMap p = new HashMap();
|
|
p.put ("gnu.crypto.sasl.username", username);
|
|
p.put ("gnu.crypto.sasl.password", password);
|
|
SaslClient sasl =
|