From b4ec8ac33ea08fc9684b972205eb4dde1fc95cd7 Mon Sep 17 00:00:00 2001 From: Miek Gieben Date: Sun, 12 May 2013 16:11:13 +0200 Subject: [PATCH] Fix copyright --- ex/chaos/chaos.go | 4 ++++ ex/check-soa/check-soa.go | 4 ++++ ex/q/q.go | 4 ++++ ex/reflect/reflect.go | 4 ++++ 4 files changed, 16 insertions(+) diff --git a/ex/chaos/chaos.go b/ex/chaos/chaos.go index acd46e05..4979f557 100644 --- a/ex/chaos/chaos.go +++ b/ex/chaos/chaos.go @@ -1,3 +1,7 @@ +// Copyright 2011 Miek Gieben. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + // Chaos is a small program that prints the version.bind and hostname.bind // for each address of the nameserver given as argument. package main diff --git a/ex/check-soa/check-soa.go b/ex/check-soa/check-soa.go index 0242eb36..3d3a0938 100644 --- a/ex/check-soa/check-soa.go +++ b/ex/check-soa/check-soa.go @@ -1,3 +1,7 @@ +// Copyright 2011 Miek Gieben. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + // Go equivalent of the "DNS & BIND" book check-soa program. package main diff --git a/ex/q/q.go b/ex/q/q.go index fcc1cf80..a134ccd9 100644 --- a/ex/q/q.go +++ b/ex/q/q.go @@ -1,3 +1,7 @@ +// Copyright 2011 Miek Gieben. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + // Q is a small utility which acts and behaves like 'dig' from BIND. // It is meant to stay lean and mean, while having a bunch of handy // features, like -check which checks if a packet is correctly signed (without diff --git a/ex/reflect/reflect.go b/ex/reflect/reflect.go index 1c976819..437b070c 100644 --- a/ex/reflect/reflect.go +++ b/ex/reflect/reflect.go @@ -1,3 +1,7 @@ +// Copyright 2011 Miek Gieben. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + // Reflect is a small name server which sends back the IP address of its client, the // recursive resolver. // When queried for type A (resp. AAAA), it sends back the IPv4 (resp. v6) address.