From 4b5b74d3a86b9033952074e156057c7bae205d60 Mon Sep 17 00:00:00 2001
From: Keith Uplinger <uplink@us.ibm.com>
Date: Mon, 10 Jun 2013 16:01:57 -0500
Subject: [PATCH] Fix login bug that has capital letters.
---
.../src/edu/berkeley/boinc/rpc/RpcClient.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/android/BOINC/src/edu/berkeley/boinc/rpc/RpcClient.java b/android/BOINC/src/edu/berkeley/boinc/rpc/RpcClient.java
index 7bc4c86..bebb1d1 100644
|
a
|
b
|
public class RpcClient { |
| 784 | 784 | mRequest.append("<lookup_account>\n <url>"); |
| 785 | 785 | mRequest.append(accountIn.url); |
| 786 | 786 | mRequest.append("</url>\n <email_addr>"); |
| 787 | | mRequest.append(id); |
| | 787 | mRequest.append(id.toLowerCase()); |
| 788 | 788 | mRequest.append("</email_addr>\n <passwd_hash>"); |
| 789 | | mRequest.append(getPasswdHash(accountIn.passwd, id)); |
| | 789 | mRequest.append(getPasswdHash(accountIn.passwd, id.toLowerCase())); |
| 790 | 790 | mRequest.append("</passwd_hash>\n</lookup_account>\n"); |
| 791 | 791 | sendRequest(mRequest.toString()); |
| 792 | 792 | |