debian/changelog: Prepare for next minor version.
[catacomb] / rand / tlsprf.c
index 3f055b0..95f5b94 100644 (file)
@@ -249,7 +249,7 @@ static const grand_ops dx_grops = {
   "<tlsdx-dummy>",
   GRAND_CRYPTO, 0,
   dx_grmisc, dx_grdestroy,
-  dx_grword, dx_grbyte, dx_grword, grand_range, dx_grfill
+  dx_grword, dx_grbyte, dx_grword, grand_defaultrange, dx_grfill
 };
 
 /* ---@tlsdx_rand@ --- *
@@ -454,7 +454,7 @@ static const grand_ops prf_grops = {
   "<tlsprf-dummy>",
   GRAND_CRYPTO, 0,
   prf_grmisc, prf_grdestroy,
-  prf_grword, prf_grbyte, prf_grword, grand_range, prf_grfill
+  prf_grword, prf_grbyte, prf_grword, grand_defaultrange, prf_grfill
 };
 
 /* ---@tlsprf_rand@ --- *
@@ -493,6 +493,7 @@ grand *tlsprf_rand(const gcmac *mcx, const gcmac *mcy,
 #include <stdio.h>
 #include <string.h>
 
+#include <mLib/macros.h>
 #include <mLib/quis.h>
 #include <mLib/testrig.h>
 
@@ -511,7 +512,7 @@ static int v_generate(dstr *v)
   d.len = v[2].len;
   g->ops->fill(g, d.buf, d.len);
   g->ops->destroy(g);
-  if (memcmp(v[2].buf, d.buf, d.len) != 0) {
+  if (MEMCMP(v[2].buf, !=, d.buf, d.len)) {
     ok = 0;
     printf("\nfail tlsprf:"
           "\n\tkey        = ");