X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=zlint%2Ftest-init-03.cpp;h=3f76c46826f47c2b080164fd0bf81be5bb06f19a;hb=cd0004748ff588edb379f4967cfb03b376a55827;hp=64f8ae64fdac8f7669b10867ae7f21f4ad8e460f;hpb=491fb0058392b83d1e44eaa7494e827f3530f3dd;p=yazpp-moved-to-github.git diff --git a/zlint/test-init-03.cpp b/zlint/test-init-03.cpp index 64f8ae6..3f76c46 100644 --- a/zlint/test-init-03.cpp +++ b/zlint/test-init-03.cpp @@ -2,7 +2,7 @@ * Copyright (c) 2004, Index Data. * See the file LICENSE for details. * - * $Id: test-init-03.cpp,v 1.3 2004-12-13 20:50:54 adam Exp $ + * $Id: test-init-03.cpp,v 1.5 2005-08-11 18:53:01 adam Exp $ */ #include @@ -28,13 +28,13 @@ Zlint_code Zlint_test_init_03::init(Zlint *z) ODR_MASK_ZERO(init->protocolVersion); int i; for (i = 0; i< 9; i++) - ODR_MASK_SET(init->protocolVersion, i); + ODR_MASK_SET(init->protocolVersion, i); int r = z->send_Z_PDU(apdu, &len); if (r < 0) { - z->msg_check_fail("unable to send init request"); - return TEST_FINISHED; + z->msg_check_fail("unable to send init request"); + return TEST_FINISHED; } return TEST_CONTINUE; } @@ -42,19 +42,26 @@ Zlint_code Zlint_test_init_03::init(Zlint *z) Zlint_code Zlint_test_init_03::recv_gdu(Zlint *z, Z_GDU *gdu) { if (gdu->which == Z_GDU_Z3950 && - gdu->u.z3950 && gdu->u.z3950->which == Z_APDU_initResponse) + gdu->u.z3950 && gdu->u.z3950->which == Z_APDU_initResponse) { - Z_InitResponse *init = gdu->u.z3950->u.initResponse; - int ver = z->initResponseGetVersion(init); - int result = init->result ? *init->result : 0; + Z_InitResponse *init = gdu->u.z3950->u.initResponse; + int ver = z->initResponseGetVersion(init); - if (ver < 2 || ver > 5) - z->msg_check_fail("%sgot version %d, expected 2-5", ver); - z->msg_check_ok(); + if (ver < 2 || ver > 5) + z->msg_check_fail("%sgot version %d, expected 2-5", ver); + z->msg_check_ok(); } else - z->msg_check_fail("did not receive init response as expected"); + z->msg_check_fail("did not receive init response as expected"); return TEST_FINISHED; } +/* + * Local variables: + * c-basic-offset: 4 + * indent-tabs-mode: nil + * End: + * vim: shiftwidth=4 tabstop=8 expandtab + */ +