]> git.ipfire.org Git - thirdparty/bind9.git/commitdiff
update copyright notice
authorAutomatic Updater <source@isc.org>
Thu, 18 Aug 2011 23:46:35 +0000 (23:46 +0000)
committerAutomatic Updater <source@isc.org>
Thu, 18 Aug 2011 23:46:35 +0000 (23:46 +0000)
lib/dns/dst_api.c
lib/dns/dst_parse.c

index 2a3d2bf232e4409dbfd011d1d1ce273f84090ad7..1cf2ef38e04e73669fb88e377a5f46accf4fbf06 100644 (file)
@@ -31,7 +31,7 @@
 
 /*
  * Principal Author: Brian Wellington
- * $Id: dst_api.c,v 1.62 2011/08/18 17:41:54 marka Exp $
+ * $Id: dst_api.c,v 1.63 2011/08/18 23:46:34 tbox Exp $
  */
 
 /*! \file */
@@ -1580,7 +1580,7 @@ write_public_key(const dst_key_t *key, int type, const char *directory) {
 
        isc_buffer_usedregion(&classb, &r);
        if ((unsigned)isc_util_fwrite(r.base, 1, r.length, fp) != r.length)
-               ret = DST_R_WRITEERROR;
+              ret = DST_R_WRITEERROR;
 
        if ((type & DST_TYPE_KEY) != 0)
                fprintf(fp, " KEY ");
@@ -1589,7 +1589,7 @@ write_public_key(const dst_key_t *key, int type, const char *directory) {
 
        isc_buffer_usedregion(&textb, &r);
        if ((unsigned)isc_util_fwrite(r.base, 1, r.length, fp) != r.length)
-               ret = DST_R_WRITEERROR;
+              ret = DST_R_WRITEERROR;
 
        fputc('\n', fp);
        fflush(fp);
index b3f3c275eb0ff19b61df415944c34f8128764dce..ee513d55765a51eead223dcb85451c2d3b457584 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Portions Copyright (C) 2004-2010  Internet Systems Consortium, Inc. ("ISC")
+ * Portions Copyright (C) 2004-2011  Internet Systems Consortium, Inc. ("ISC")
  * Portions Copyright (C) 1999-2002  Internet Software Consortium.
  *
  * Permission to use, copy, modify, and/or distribute this software for any
@@ -31,7 +31,7 @@
 
 /*%
  * Principal Author: Brian Wellington
- * $Id: dst_parse.c,v 1.28 2011/08/18 04:52:35 marka Exp $
+ * $Id: dst_parse.c,v 1.29 2011/08/18 23:46:35 tbox Exp $
  */
 
 #include <config.h>
@@ -641,7 +641,7 @@ dst__privstruct_writefile(const dst_key_t *key, const dst_private_t *priv,
                }
                isc_buffer_usedregion(&b, &r);
 
-               fprintf(fp, "%s %.*s\n", s, (int)r.length, r.base);
+              fprintf(fp, "%s %.*s\n", s, (int)r.length, r.base);
        }
 
        /* Add the metadata tags */
@@ -659,15 +659,15 @@ dst__privstruct_writefile(const dst_key_t *key, const dst_private_t *priv,
 
                        isc_buffer_init(&b, buffer, sizeof(buffer));
                        result = dns_time32_totext(when, &b);
-                       if (result != ISC_R_SUCCESS) {
-                               fclose(fp);
-                               return (DST_R_INVALIDPRIVATEKEY);
-                       }
+                      if (result != ISC_R_SUCCESS) {
+                              fclose(fp);
+                              return (DST_R_INVALIDPRIVATEKEY);
+                      }
 
                        isc_buffer_usedregion(&b, &r);
 
-                       fprintf(fp, "%s %.*s\n", timetags[i], (int)r.length,
-                                r.base);
+                      fprintf(fp, "%s %.*s\n", timetags[i], (int)r.length,
+                               r.base);
                }
        }