summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Batutin <ABatutin@luxoft.com>2014-07-10 17:10:40 +0300
committerAndrew Batutin <ABatutin@luxoft.com>2014-07-10 17:10:40 +0300
commit299ff57a96d7c4a3cbddfc12a02511c75616a247 (patch)
treefe2c3891faac7e249d6292a991151afe7bd99a9f
parentdf8a60b96502d47836168213a067f32ae869bd3a (diff)
downloadsdl_core-299ff57a96d7c4a3cbddfc12a02511c75616a247.tar.gz
minor bugfix
-rw-r--r--mobile/android/SyncProxyAndroid/src/main/java/com/ford/syncV4/protocol/secure/secureproxy/ProtocolSecureManager.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/mobile/android/SyncProxyAndroid/src/main/java/com/ford/syncV4/protocol/secure/secureproxy/ProtocolSecureManager.java b/mobile/android/SyncProxyAndroid/src/main/java/com/ford/syncV4/protocol/secure/secureproxy/ProtocolSecureManager.java
index 5ccab0f43f..e51e078c46 100644
--- a/mobile/android/SyncProxyAndroid/src/main/java/com/ford/syncV4/protocol/secure/secureproxy/ProtocolSecureManager.java
+++ b/mobile/android/SyncProxyAndroid/src/main/java/com/ford/syncV4/protocol/secure/secureproxy/ProtocolSecureManager.java
@@ -161,7 +161,7 @@ public class ProtocolSecureManager implements IProtocolSecureManager {
Log.i("cypheredData.length < 1000", "data.length" + data.length);
listenerOFCodedData.setOriginalLength(data.length - WiProProtocol.SSL_OVERHEAD);
writeDataToProxyServer(data, listenerOFCodedData);
- getCountDownLatchInput().await();
+ countDownLatch.await();
return cypheredData;
} else {
return data;