summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authorCamiel Dobbelaar <camield@cvs.openbsd.org>2001-08-13 20:19:34 +0000
committerCamiel Dobbelaar <camield@cvs.openbsd.org>2001-08-13 20:19:34 +0000
commit0909da8835952a759b6dad296c7fa353ba2342f2 (patch)
tree1774d7a4b2ff492ffb44f18e52749cf818a23af4 /libexec
parent9b80930a98b45e288345a7e869d320fab4f0a698 (diff)
Tags
Diffstat (limited to 'libexec')
-rw-r--r--libexec/popa3d/auth_passwd.c2
-rw-r--r--libexec/popa3d/database.c2
-rw-r--r--libexec/popa3d/database.h2
-rw-r--r--libexec/popa3d/mailbox.c2
-rw-r--r--libexec/popa3d/mailbox.h2
-rw-r--r--libexec/popa3d/misc.c2
-rw-r--r--libexec/popa3d/misc.h2
-rw-r--r--libexec/popa3d/params.h2
-rw-r--r--libexec/popa3d/pop_auth.c2
-rw-r--r--libexec/popa3d/pop_auth.h2
-rw-r--r--libexec/popa3d/pop_root.c2
-rw-r--r--libexec/popa3d/pop_trans.c2
-rw-r--r--libexec/popa3d/pop_trans.h2
-rw-r--r--libexec/popa3d/protocol.c2
-rw-r--r--libexec/popa3d/protocol.h2
-rw-r--r--libexec/popa3d/standalone.c2
-rw-r--r--libexec/popa3d/virtual.c2
-rw-r--r--libexec/popa3d/virtual.h2
18 files changed, 36 insertions, 0 deletions
diff --git a/libexec/popa3d/auth_passwd.c b/libexec/popa3d/auth_passwd.c
index 40642a2d8b2..0e8a19afb23 100644
--- a/libexec/popa3d/auth_passwd.c
+++ b/libexec/popa3d/auth_passwd.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: auth_passwd.c,v 1.2 2001/08/13 20:19:33 camield Exp $ */
+
/*
* The /etc/passwd authentication routine.
*/
diff --git a/libexec/popa3d/database.c b/libexec/popa3d/database.c
index 1d6d5b76c42..f3c8e7a8df6 100644
--- a/libexec/popa3d/database.c
+++ b/libexec/popa3d/database.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: database.c,v 1.2 2001/08/13 20:19:33 camield Exp $ */
+
/*
* Message database management.
*/
diff --git a/libexec/popa3d/database.h b/libexec/popa3d/database.h
index e35c382d0a6..cc362070fbe 100644
--- a/libexec/popa3d/database.h
+++ b/libexec/popa3d/database.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: database.h,v 1.2 2001/08/13 20:19:33 camield Exp $ */
+
/*
* Message database management.
*/
diff --git a/libexec/popa3d/mailbox.c b/libexec/popa3d/mailbox.c
index 1f388eacf80..482f8e344e1 100644
--- a/libexec/popa3d/mailbox.c
+++ b/libexec/popa3d/mailbox.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: mailbox.c,v 1.2 2001/08/13 20:19:33 camield Exp $ */
+
/*
* Mailbox access.
*/
diff --git a/libexec/popa3d/mailbox.h b/libexec/popa3d/mailbox.h
index 0e6dbb5b738..b8d2142fa18 100644
--- a/libexec/popa3d/mailbox.h
+++ b/libexec/popa3d/mailbox.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: mailbox.h,v 1.2 2001/08/13 20:19:33 camield Exp $ */
+
/*
* Mailbox access.
*/
diff --git a/libexec/popa3d/misc.c b/libexec/popa3d/misc.c
index 20c0902fe1f..18275c3b22f 100644
--- a/libexec/popa3d/misc.c
+++ b/libexec/popa3d/misc.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: misc.c,v 1.2 2001/08/13 20:19:33 camield Exp $ */
+
/*
* Miscellaneous syscall wrappers. See misc.h for the descriptions.
*/
diff --git a/libexec/popa3d/misc.h b/libexec/popa3d/misc.h
index dbf909e3ccb..17b3e2ebf4c 100644
--- a/libexec/popa3d/misc.h
+++ b/libexec/popa3d/misc.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: misc.h,v 1.2 2001/08/13 20:19:33 camield Exp $ */
+
/*
* Miscellaneous syscall wrappers.
*/
diff --git a/libexec/popa3d/params.h b/libexec/popa3d/params.h
index 99606fd51de..848ed6cff0b 100644
--- a/libexec/popa3d/params.h
+++ b/libexec/popa3d/params.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: params.h,v 1.2 2001/08/13 20:19:33 camield Exp $ */
+
/*
* Global POP daemon parameters.
*/
diff --git a/libexec/popa3d/pop_auth.c b/libexec/popa3d/pop_auth.c
index 22450da14ac..46f57cd2141 100644
--- a/libexec/popa3d/pop_auth.c
+++ b/libexec/popa3d/pop_auth.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: pop_auth.c,v 1.2 2001/08/13 20:19:33 camield Exp $ */
+
/*
* AUTHORIZATION state handling.
*/
diff --git a/libexec/popa3d/pop_auth.h b/libexec/popa3d/pop_auth.h
index 224fa94bf07..4013eb2ea88 100644
--- a/libexec/popa3d/pop_auth.h
+++ b/libexec/popa3d/pop_auth.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: pop_auth.h,v 1.2 2001/08/13 20:19:33 camield Exp $ */
+
/*
* AUTHORIZATION state handling.
*/
diff --git a/libexec/popa3d/pop_root.c b/libexec/popa3d/pop_root.c
index b109e47973d..e55ab950af9 100644
--- a/libexec/popa3d/pop_root.c
+++ b/libexec/popa3d/pop_root.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: pop_root.c,v 1.2 2001/08/13 20:19:33 camield Exp $ */
+
/*
* Main daemon code: invokes the actual POP handling routines. Most calls
* to functions in other source files are done as a non-root user (either
diff --git a/libexec/popa3d/pop_trans.c b/libexec/popa3d/pop_trans.c
index fe61b98a757..26193f62245 100644
--- a/libexec/popa3d/pop_trans.c
+++ b/libexec/popa3d/pop_trans.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: pop_trans.c,v 1.2 2001/08/13 20:19:33 camield Exp $ */
+
/*
* TRANSACTION state handling.
*/
diff --git a/libexec/popa3d/pop_trans.h b/libexec/popa3d/pop_trans.h
index 315b8cb2f4c..a7a3e5390bc 100644
--- a/libexec/popa3d/pop_trans.h
+++ b/libexec/popa3d/pop_trans.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: pop_trans.h,v 1.2 2001/08/13 20:19:33 camield Exp $ */
+
/*
* TRANSACTION state handling.
*/
diff --git a/libexec/popa3d/protocol.c b/libexec/popa3d/protocol.c
index 20382dc31ca..e6be0365ac1 100644
--- a/libexec/popa3d/protocol.c
+++ b/libexec/popa3d/protocol.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: protocol.c,v 1.2 2001/08/13 20:19:33 camield Exp $ */
+
/*
* POP protocol handling.
*/
diff --git a/libexec/popa3d/protocol.h b/libexec/popa3d/protocol.h
index f429d9de723..62b8c6dff03 100644
--- a/libexec/popa3d/protocol.h
+++ b/libexec/popa3d/protocol.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: protocol.h,v 1.2 2001/08/13 20:19:33 camield Exp $ */
+
/*
* POP protocol handling.
*/
diff --git a/libexec/popa3d/standalone.c b/libexec/popa3d/standalone.c
index 400bdc6e793..cb4291c9409 100644
--- a/libexec/popa3d/standalone.c
+++ b/libexec/popa3d/standalone.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: standalone.c,v 1.2 2001/08/13 20:19:33 camield Exp $ */
+
/*
* Standalone POP server: accepts connections, checks the anti-flood limits,
* logs and starts the actual POP sessions.
diff --git a/libexec/popa3d/virtual.c b/libexec/popa3d/virtual.c
index 9b87ebb9660..fad4998cd11 100644
--- a/libexec/popa3d/virtual.c
+++ b/libexec/popa3d/virtual.c
@@ -1,3 +1,5 @@
+/* $OpenBSD: virtual.c,v 1.2 2001/08/13 20:19:33 camield Exp $ */
+
/*
* Virtual domain support.
*/
diff --git a/libexec/popa3d/virtual.h b/libexec/popa3d/virtual.h
index 92173a32bc9..625aa9f3be9 100644
--- a/libexec/popa3d/virtual.h
+++ b/libexec/popa3d/virtual.h
@@ -1,3 +1,5 @@
+/* $OpenBSD: virtual.h,v 1.2 2001/08/13 20:19:33 camield Exp $ */
+
/*
* Virtual domain support.
*/