]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
update copyright notice
authorAutomatic Updater <source@isc.org>
Tue, 15 Sep 2009 23:48:09 +0000 (23:48 +0000)
committerAutomatic Updater <source@isc.org>
Tue, 15 Sep 2009 23:48:09 +0000 (23:48 +0000)
bin/dig/dighost.c
bin/dig/include/dig/dig.h

index 4b6764dda99aa7cad338637b058de885bac7d8c7..7b81605304eff6ef4bc8ca05420fc6f333c434da 100644 (file)
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: dighost.c,v 1.325 2009/09/15 03:13:43 each Exp $ */
+/* $Id: dighost.c,v 1.326 2009/09/15 23:48:09 tbox Exp $ */
 
 /*! \file
  *  \note
@@ -964,14 +964,14 @@ parse_uint(isc_uint32_t *uip, const char *value, isc_uint32_t max,
 
 static isc_uint32_t
 parse_bits(char *arg, const char *desc, isc_uint32_t max) {
-        isc_result_t result;
-        isc_uint32_t tmp;
-
-        result = parse_uint(&tmp, arg, max, desc);
-        if (result != ISC_R_SUCCESS)
-                fatal("couldn't parse digest bits");
-        tmp = (tmp + 7) & ~0x7U;
-        return (tmp);
+       isc_result_t result;
+       isc_uint32_t tmp;
+
+       result = parse_uint(&tmp, arg, max, desc);
+       if (result != ISC_R_SUCCESS)
+               fatal("couldn't parse digest bits");
+       tmp = (tmp + 7) & ~0x7U;
+       return (tmp);
 }
 
 
@@ -986,7 +986,7 @@ parse_hmac(const char *hmac) {
        REQUIRE(hmac != NULL);
 
        len = strlen(hmac);
-        if (len >= (int) sizeof(buf))
+       if (len >= (int) sizeof(buf))
                fatal("unknown key type '%.*s'", len, hmac);
        strncpy(buf, hmac, sizeof(buf));
 
index 8d319fbb117c1b89db1b566427eabc8f24cb1156..d463afb35f71a2fb883f8fea7dd8ec54abfe4bce 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (C) 2004-2008  Internet Systems Consortium, Inc. ("ISC")
+ * Copyright (C) 2004-2009  Internet Systems Consortium, Inc. ("ISC")
  * Copyright (C) 2000-2003  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
@@ -15,7 +15,7 @@
  * PERFORMANCE OF THIS SOFTWARE.
  */
 
-/* $Id: dig.h,v 1.109 2009/09/15 03:13:44 each Exp $ */
+/* $Id: dig.h,v 1.110 2009/09/15 23:48:09 tbox Exp $ */
 
 #ifndef DIG_H
 #define DIG_H