mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 07:22:08 -04:00
"do" was missing from the RETERR macro:
#define RETERR(x) do { \
ret = (x); \
if (ret != ISC_R_SUCCESS) \
return (ret); \
} while (0)
This commit is contained in:
parent
d1ee833efb
commit
7f2ad79f65
1 changed files with 2 additions and 2 deletions
|
|
@ -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 <config.h>
|
||||
|
|
@ -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); \
|
||||
|
|
|
|||
Loading…
Reference in a new issue