X-Git-Url: http://git.onelab.eu/?a=blobdiff_plain;f=tests%2Ftest-vconn.c;fp=tests%2Ftest-vconn.c;h=2b14fa85d1858d873d32d1d034ef4bcbfbff69a4;hb=d84d4b88d26e3f37ce24f1d3eebe0d70ef264f73;hp=12b69ca0bff41ce5a75e7e97a444e6f0bf2590d3;hpb=5eba3806a3a6e0531297e3cd763e23e8c1355abb;p=sliver-openvswitch.git diff --git a/tests/test-vconn.c b/tests/test-vconn.c index 12b69ca0b..2b14fa85d 100644 --- a/tests/test-vconn.c +++ b/tests/test-vconn.c @@ -1,5 +1,5 @@ /* - * Copyright (c) 2009, 2010 Nicira Networks. + * Copyright (c) 2009, 2010, 2011 Nicira Networks. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -203,7 +203,7 @@ test_read_hello(int argc OVS_UNUSED, char *argv[]) if (retval == sizeof hello) { CHECK(hello.version, OFP_VERSION); CHECK(hello.type, OFPT_HELLO); - CHECK(hello.length, htons(sizeof hello)); + CHECK(ntohs(hello.length), sizeof hello); break; } else { CHECK_ERRNO(retval, -EAGAIN); @@ -269,7 +269,7 @@ test_send_hello(const char *type, const void *out, size_t out_size, if (retval == sizeof hello) { CHECK(hello.version, OFP_VERSION); CHECK(hello.type, OFPT_HELLO); - CHECK(hello.length, htons(sizeof hello)); + CHECK(ntohs(hello.length), sizeof hello); read_hello = true; } else { CHECK_ERRNO(retval, -EAGAIN);