From 7f2ad79f653855df9b6d3fc69a17f1afc6d5f487 Mon Sep 17 00:00:00 2001 From: Mark Andrews Date: Fri, 29 Oct 1999 05:25:57 +0000 Subject: [PATCH] "do" was missing from the RETERR macro: #define RETERR(x) do { \ ret = (x); \ if (ret != ISC_R_SUCCESS) \ return (ret); \ } while (0) --- lib/dns/sec/dst/hmac_link.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/dns/sec/dst/hmac_link.c b/lib/dns/sec/dst/hmac_link.c index 5a6108edd0..6cc2c0b87d 100644 --- a/lib/dns/sec/dst/hmac_link.c +++ b/lib/dns/sec/dst/hmac_link.c @@ -17,7 +17,7 @@ /* * Principal Author: Brian Wellington - * $Id: hmac_link.c,v 1.14 1999/10/27 16:52:55 bwelling Exp $ + * $Id: hmac_link.c,v 1.15 1999/10/29 05:25:57 marka Exp $ */ #include @@ -46,7 +46,7 @@ #define MD5Update MD5_Update #define MD5Final MD5_Final -#define RETERR(x) { \ +#define RETERR(x) do { \ ret = (x); \ if (ret != ISC_R_SUCCESS) \ return (ret); \