~ubuntu-branches/debian/sid/openchange/sid

« back to all changes in this revision

Viewing changes to utils/mapitest/mapitest_stat.c

  • Committer: Package Import Robot
  • Author(s): Jelmer Vernooij
  • Date: 2012-04-12 20:07:57 UTC
  • mfrom: (11 sid)
  • mto: This revision was merged to the branch mainline in revision 12.
  • Revision ID: package-import@ubuntu.com-20120412200757-k933d9trljmxj1l4
Tags: 1:1.0-4
* openchangeserver: Add dependency on openchangeproxy.
* Rebuild against newer version of Samba 4.
* Use dpkg-buildflags.
* Migrate to Git, update Vcs-Git header.
* Switch to debhelper 9.

Show diffs side-by-side

added added

removed removed

Lines of Context:
98
98
                if (testresult == Fail) {
99
99
                        suite->stat->failure++;
100
100
                        el->reason = talloc_strdup((TALLOC_CTX *) el, "Unexpected Fail");
101
 
                } else if (testresult == ExpectedFailure) {
 
101
                } else if ((int)testresult == (int)ExpectedFail) {
102
102
                        suite->stat->x_fail++;
103
103
                        el->reason = talloc_strdup((TALLOC_CTX *) el, "Expected Fail");
104
104
                } else if (testresult == UnexpectedPass) {