mirror of
https://github.com/isc-projects/bind9.git
synced 2026-06-09 00:12:04 -04:00
style
This commit is contained in:
parent
081cff0c33
commit
6a4c22bc4d
1 changed files with 3 additions and 3 deletions
|
|
@ -15,7 +15,7 @@
|
|||
* WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||
*/
|
||||
|
||||
/* $Id: check.c,v 1.4 2001/10/11 04:52:21 marka Exp $ */
|
||||
/* $Id: check.c,v 1.5 2001/10/25 17:07:21 bwelling Exp $ */
|
||||
|
||||
#include <config.h>
|
||||
|
||||
|
|
@ -338,9 +338,9 @@ bind9_check_key(cfg_obj_t *key, isc_log_t *logctx) {
|
|||
"key '%s' must have both 'secret' and "
|
||||
"'algorithm' defined",
|
||||
keyname);
|
||||
return ISC_R_FAILURE;
|
||||
return (ISC_R_FAILURE);
|
||||
}
|
||||
return ISC_R_SUCCESS;
|
||||
return (ISC_R_SUCCESS);
|
||||
}
|
||||
|
||||
static isc_result_t
|
||||
|
|
|
|||
Loading…
Reference in a new issue