Correctly fix the ping

The sense of the check was reversed.

Change-Id: If9da754dadaf2afbdbfc6fc7c428343cd95553fa
diff --git a/src/com/android/exchange/service/EasService.java b/src/com/android/exchange/service/EasService.java
index c024c95..3a274b7 100644
--- a/src/com/android/exchange/service/EasService.java
+++ b/src/com/android/exchange/service/EasService.java
@@ -344,7 +344,7 @@
             LogUtils.d(TAG, "Operation result %d", result);
             return result;
         } finally {
-            mSynchronizer.syncEnd(result > EasOperation.RESULT_MIN_OK_RESULT,
+            mSynchronizer.syncEnd(result < EasOperation.RESULT_MIN_OK_RESULT,
                     operation.getAccount());
         }
     }