From b2b9e928cb0b0b8dfcc7e4a00af208dab71dfc1d Mon Sep 17 00:00:00 2001 From: Stephan Bosch Date: Mon, 28 Nov 2016 03:26:01 +0100 Subject: [PATCH] global: Added missing copyright notices. --- src/auth/auth-policy.c | 2 ++ src/auth/mech-plain-common.c | 2 ++ src/auth/mycrypt.c | 2 ++ src/auth/password-scheme-rpa.c | 1 + src/doveadm/doveadm-print-formatted.c | 2 ++ src/doveadm/doveadm-print-json.c | 2 ++ src/lib-dcrypt/dcrypt-gnutls.c | 2 ++ src/lib-dcrypt/dcrypt-openssl.c | 2 ++ src/lib-dcrypt/dcrypt.c | 2 ++ src/lib-dcrypt/istream-decrypt.c | 2 ++ src/lib-dcrypt/test-crypto.c | 2 ++ src/lib-dcrypt/test-stream.c | 2 ++ src/lib-dns/test-dns-util.c | 2 ++ src/lib-fts/fts-library.c | 2 ++ src/lib-fts/fts-tokenizer-common.c | 2 ++ src/lib-http/http-request.c | 2 ++ src/lib-http/http-response.c | 2 ++ src/lib/pkcs5.c | 2 ++ 18 files changed, 35 insertions(+) diff --git a/src/auth/auth-policy.c b/src/auth/auth-policy.c index 86b31f1ca6..cdbb320e89 100755 --- a/src/auth/auth-policy.c +++ b/src/auth/auth-policy.c @@ -1,3 +1,5 @@ +/* Copyright (c) 2016 Dovecot authors, see the included COPYING file */ + #include "lib.h" #include "net.h" #include "str.h" diff --git a/src/auth/mech-plain-common.c b/src/auth/mech-plain-common.c index 8991041761..4878578208 100644 --- a/src/auth/mech-plain-common.c +++ b/src/auth/mech-plain-common.c @@ -1,3 +1,5 @@ +/* Copyright (c) 2009-2016 Dovecot authors, see the included COPYING file */ + #include "auth-common.h" #include "mech.h" #include "passdb.h" diff --git a/src/auth/mycrypt.c b/src/auth/mycrypt.c index f8ae766731..4755f7c379 100644 --- a/src/auth/mycrypt.c +++ b/src/auth/mycrypt.c @@ -1,3 +1,5 @@ +/* Copyright (c) 2002-2016 Dovecot authors, see the included COPYING file */ + #ifdef HAVE_CONFIG_H # include "config.h" #endif diff --git a/src/auth/password-scheme-rpa.c b/src/auth/password-scheme-rpa.c index 1ea06b8350..a75267f81c 100644 --- a/src/auth/password-scheme-rpa.c +++ b/src/auth/password-scheme-rpa.c @@ -1,3 +1,4 @@ +/* Copyright (c) 2004-2016 Dovecot authors, see the included COPYING file */ #include "lib.h" #include "buffer.h" diff --git a/src/doveadm/doveadm-print-formatted.c b/src/doveadm/doveadm-print-formatted.c index 28347eb81d..53033ad67f 100644 --- a/src/doveadm/doveadm-print-formatted.c +++ b/src/doveadm/doveadm-print-formatted.c @@ -1,3 +1,5 @@ +/* Copyright (c) 2016 Dovecot authors, see the included COPYING file */ + #include "lib.h" #include "array.h" #include "str.h" diff --git a/src/doveadm/doveadm-print-json.c b/src/doveadm/doveadm-print-json.c index fbfe86ee33..54ee3dffca 100644 --- a/src/doveadm/doveadm-print-json.c +++ b/src/doveadm/doveadm-print-json.c @@ -1,3 +1,5 @@ +/* Copyright (c) 2016 Dovecot authors, see the included COPYING file */ + #include "lib.h" #include "array.h" #include "str.h" diff --git a/src/lib-dcrypt/dcrypt-gnutls.c b/src/lib-dcrypt/dcrypt-gnutls.c index 7185435aa4..2aa87a1bfc 100644 --- a/src/lib-dcrypt/dcrypt-gnutls.c +++ b/src/lib-dcrypt/dcrypt-gnutls.c @@ -1,3 +1,5 @@ +/* Copyright (c) 2016 Dovecot authors, see the included COPYING file */ + #include "lib.h" #include "buffer.h" #include "randgen.h" diff --git a/src/lib-dcrypt/dcrypt-openssl.c b/src/lib-dcrypt/dcrypt-openssl.c index 2011ec4a5d..56aadb8acb 100644 --- a/src/lib-dcrypt/dcrypt-openssl.c +++ b/src/lib-dcrypt/dcrypt-openssl.c @@ -1,3 +1,5 @@ +/* Copyright (c) 2016 Dovecot authors, see the included COPYING file */ + #include "lib.h" #include "buffer.h" #include "str.h" diff --git a/src/lib-dcrypt/dcrypt.c b/src/lib-dcrypt/dcrypt.c index 897fcf9801..148b8026a4 100644 --- a/src/lib-dcrypt/dcrypt.c +++ b/src/lib-dcrypt/dcrypt.c @@ -1,3 +1,5 @@ +/* Copyright (c) 2016 Dovecot authors, see the included COPYING file */ + #include "lib.h" #include "module-dir.h" #include "dcrypt.h" diff --git a/src/lib-dcrypt/istream-decrypt.c b/src/lib-dcrypt/istream-decrypt.c index a8aea314db..69ca7663d7 100644 --- a/src/lib-dcrypt/istream-decrypt.c +++ b/src/lib-dcrypt/istream-decrypt.c @@ -1,3 +1,5 @@ +/* Copyright (c) 2016 Dovecot authors, see the included COPYING file */ + #include "lib.h" #include "buffer.h" #include "randgen.h" diff --git a/src/lib-dcrypt/test-crypto.c b/src/lib-dcrypt/test-crypto.c index d8695e5116..47a4cfe760 100644 --- a/src/lib-dcrypt/test-crypto.c +++ b/src/lib-dcrypt/test-crypto.c @@ -1,3 +1,5 @@ +/* Copyright (c) 2016 Dovecot authors, see the included COPYING file */ + #include "lib.h" #include "buffer.h" #include "str.h" diff --git a/src/lib-dcrypt/test-stream.c b/src/lib-dcrypt/test-stream.c index f468eda563..0ddd88cbd3 100644 --- a/src/lib-dcrypt/test-stream.c +++ b/src/lib-dcrypt/test-stream.c @@ -1,3 +1,5 @@ +/* Copyright (c) 2016 Dovecot authors, see the included COPYING file */ + #include "lib.h" #include "buffer.h" #include "str.h" diff --git a/src/lib-dns/test-dns-util.c b/src/lib-dns/test-dns-util.c index 01c043facc..a5c2694aa8 100644 --- a/src/lib-dns/test-dns-util.c +++ b/src/lib-dns/test-dns-util.c @@ -1,3 +1,5 @@ +/* Copyright (c) 2016 Dovecot authors, see the included COPYING file */ + #include "lib.h" #include "test-lib.h" #include "dns-util.h" diff --git a/src/lib-fts/fts-library.c b/src/lib-fts/fts-library.c index dca42f4349..53147ba9ba 100644 --- a/src/lib-fts/fts-library.c +++ b/src/lib-fts/fts-library.c @@ -1,3 +1,5 @@ +/* Copyright (c) 2015-2016 Dovecot authors, see the included COPYING file */ + #include "lib.h" #include "fts-language.h" #include "fts-tokenizer.h" diff --git a/src/lib-fts/fts-tokenizer-common.c b/src/lib-fts/fts-tokenizer-common.c index 92feb71c28..4b4e560179 100644 --- a/src/lib-fts/fts-tokenizer-common.c +++ b/src/lib-fts/fts-tokenizer-common.c @@ -1,3 +1,5 @@ +/* Copyright (c) 2016 Dovecot authors, see the included COPYING file */ + #include "lib.h" #include "unichar.h" #include "fts-tokenizer-common.h" diff --git a/src/lib-http/http-request.c b/src/lib-http/http-request.c index 51d8c0841a..024983525d 100644 --- a/src/lib-http/http-request.c +++ b/src/lib-http/http-request.c @@ -1,3 +1,5 @@ +/* Copyright (c) 2013-2016 Dovecot authors, see the included COPYING file */ + #include "lib.h" #include "array.h" #include "istream.h" diff --git a/src/lib-http/http-response.c b/src/lib-http/http-response.c index f5d23c142f..666bdcbcdd 100644 --- a/src/lib-http/http-response.c +++ b/src/lib-http/http-response.c @@ -1,3 +1,5 @@ +/* Copyright (c) 2013-2016 Dovecot authors, see the included COPYING file */ + #include "lib.h" #include "array.h" #include "ioloop.h" diff --git a/src/lib/pkcs5.c b/src/lib/pkcs5.c index 449b1e88e2..cd3ff2ff50 100644 --- a/src/lib/pkcs5.c +++ b/src/lib/pkcs5.c @@ -1,3 +1,5 @@ +/* Copyright (c) 2016 Dovecot authors, see the included COPYING file */ + #include "lib.h" #include "buffer.h" #include "hash-method.h"