summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/hoststatectl/hoststatectl.86
-rw-r--r--usr.sbin/hoststatectl/hoststatectl.c4
-rw-r--r--usr.sbin/hoststatectl/parser.c4
-rw-r--r--usr.sbin/hoststatectl/parser.h4
-rw-r--r--usr.sbin/hoststated/check_icmp.c4
-rw-r--r--usr.sbin/hoststated/check_tcp.c4
-rw-r--r--usr.sbin/hoststated/hce.c4
-rw-r--r--usr.sbin/hoststated/hoststated.c4
-rw-r--r--usr.sbin/hoststated/hoststated.conf.54
-rw-r--r--usr.sbin/hoststated/hoststated.h4
-rw-r--r--usr.sbin/hoststated/parse.y4
-rw-r--r--usr.sbin/hoststated/pfe.c4
-rw-r--r--usr.sbin/hoststated/pfe_filter.c4
-rw-r--r--usr.sbin/hoststated/ssl.c4
-rw-r--r--usr.sbin/relayctl/parser.c4
-rw-r--r--usr.sbin/relayctl/parser.h4
-rw-r--r--usr.sbin/relayctl/relayctl.86
-rw-r--r--usr.sbin/relayctl/relayctl.c4
-rw-r--r--usr.sbin/relayd/check_icmp.c4
-rw-r--r--usr.sbin/relayd/check_tcp.c4
-rw-r--r--usr.sbin/relayd/hce.c4
-rw-r--r--usr.sbin/relayd/parse.y4
-rw-r--r--usr.sbin/relayd/pfe.c4
-rw-r--r--usr.sbin/relayd/pfe_filter.c4
-rw-r--r--usr.sbin/relayd/relayd.c4
-rw-r--r--usr.sbin/relayd/relayd.conf.54
-rw-r--r--usr.sbin/relayd/relayd.h4
-rw-r--r--usr.sbin/relayd/ssl.c4
28 files changed, 58 insertions, 58 deletions
diff --git a/usr.sbin/hoststatectl/hoststatectl.8 b/usr.sbin/hoststatectl/hoststatectl.8
index 52fcf227315..3aef2852767 100644
--- a/usr.sbin/hoststatectl/hoststatectl.8
+++ b/usr.sbin/hoststatectl/hoststatectl.8
@@ -1,6 +1,6 @@
-.\" $OpenBSD: hoststatectl.8,v 1.11 2007/09/07 08:33:31 reyk Exp $
+.\" $OpenBSD: hoststatectl.8,v 1.12 2007/09/28 13:29:56 pyr Exp $
.\"
-.\" Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+.\" Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
.\"
.\" Permission to use, copy, modify, and distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above
@@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: September 7 2007 $
+.Dd $Mdocdate: September 28 2007 $
.Dt HOSTSTATECTL 8
.Os
.Sh NAME
diff --git a/usr.sbin/hoststatectl/hoststatectl.c b/usr.sbin/hoststatectl/hoststatectl.c
index 15754b4507c..479d15b5356 100644
--- a/usr.sbin/hoststatectl/hoststatectl.c
+++ b/usr.sbin/hoststatectl/hoststatectl.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: hoststatectl.c,v 1.22 2007/09/07 08:33:31 reyk Exp $ */
+/* $OpenBSD: hoststatectl.c,v 1.23 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
* Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org>
* Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org>
* Copyright (c) 2003 Henning Brauer <henning@openbsd.org>
diff --git a/usr.sbin/hoststatectl/parser.c b/usr.sbin/hoststatectl/parser.c
index 6f507d1335e..dea2cb5f443 100644
--- a/usr.sbin/hoststatectl/parser.c
+++ b/usr.sbin/hoststatectl/parser.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: parser.c,v 1.12 2007/09/07 08:33:31 reyk Exp $ */
+/* $OpenBSD: parser.c,v 1.13 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
* Copyright (c) 2004 Esben Norby <norby@openbsd.org>
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
*
diff --git a/usr.sbin/hoststatectl/parser.h b/usr.sbin/hoststatectl/parser.h
index 1116677893c..9d359dfd411 100644
--- a/usr.sbin/hoststatectl/parser.h
+++ b/usr.sbin/hoststatectl/parser.h
@@ -1,7 +1,7 @@
-/* $OpenBSD: parser.h,v 1.5 2007/09/07 08:33:31 reyk Exp $ */
+/* $OpenBSD: parser.h,v 1.6 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/usr.sbin/hoststated/check_icmp.c b/usr.sbin/hoststated/check_icmp.c
index 371505344b8..7c6bfa699d1 100644
--- a/usr.sbin/hoststated/check_icmp.c
+++ b/usr.sbin/hoststated/check_icmp.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: check_icmp.c,v 1.18 2007/07/16 21:15:36 pyr Exp $ */
+/* $OpenBSD: check_icmp.c,v 1.19 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/usr.sbin/hoststated/check_tcp.c b/usr.sbin/hoststated/check_tcp.c
index 86e9525f035..3f6125d195a 100644
--- a/usr.sbin/hoststated/check_tcp.c
+++ b/usr.sbin/hoststated/check_tcp.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: check_tcp.c,v 1.25 2007/06/07 14:17:33 pyr Exp $ */
+/* $OpenBSD: check_tcp.c,v 1.26 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/usr.sbin/hoststated/hce.c b/usr.sbin/hoststated/hce.c
index 482689fcf66..3514397ec5a 100644
--- a/usr.sbin/hoststated/hce.c
+++ b/usr.sbin/hoststated/hce.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: hce.c,v 1.29 2007/06/19 13:06:00 pyr Exp $ */
+/* $OpenBSD: hce.c,v 1.30 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/usr.sbin/hoststated/hoststated.c b/usr.sbin/hoststated/hoststated.c
index e6c9cddf0fe..8a0f9196486 100644
--- a/usr.sbin/hoststated/hoststated.c
+++ b/usr.sbin/hoststated/hoststated.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: hoststated.c,v 1.39 2007/09/05 08:48:42 reyk Exp $ */
+/* $OpenBSD: hoststated.c,v 1.40 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/usr.sbin/hoststated/hoststated.conf.5 b/usr.sbin/hoststated/hoststated.conf.5
index 62cf123a0db..efb57ec9414 100644
--- a/usr.sbin/hoststated/hoststated.conf.5
+++ b/usr.sbin/hoststated/hoststated.conf.5
@@ -1,7 +1,7 @@
-.\" $OpenBSD: hoststated.conf.5,v 1.51 2007/09/28 07:20:46 jmc Exp $
+.\" $OpenBSD: hoststated.conf.5,v 1.52 2007/09/28 13:29:56 pyr Exp $
.\"
.\" Copyright (c) 2006, 2007 Reyk Floeter <reyk@openbsd.org>
-.\" Copyright (c) 2006, 2007 Pierre-Yves Ritschard <pyr@spootnik.org>
+.\" Copyright (c) 2006, 2007 Pierre-Yves Ritschard <pyr@openbsd.org>
.\"
.\" Permission to use, copy, modify, and distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above
diff --git a/usr.sbin/hoststated/hoststated.h b/usr.sbin/hoststated/hoststated.h
index 94daced59f3..4c31ef8c00f 100644
--- a/usr.sbin/hoststated/hoststated.h
+++ b/usr.sbin/hoststated/hoststated.h
@@ -1,7 +1,7 @@
-/* $OpenBSD: hoststated.h,v 1.63 2007/09/28 13:05:28 pyr Exp $ */
+/* $OpenBSD: hoststated.h,v 1.64 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006, 2007 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006, 2007 Pierre-Yves Ritschard <pyr@openbsd.org>
* Copyright (c) 2006, 2007 Reyk Floeter <reyk@openbsd.org>
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
*
diff --git a/usr.sbin/hoststated/parse.y b/usr.sbin/hoststated/parse.y
index 53ea7fedd00..bd0ae78099a 100644
--- a/usr.sbin/hoststated/parse.y
+++ b/usr.sbin/hoststated/parse.y
@@ -1,7 +1,7 @@
-/* $OpenBSD: parse.y,v 1.54 2007/09/10 11:59:22 reyk Exp $ */
+/* $OpenBSD: parse.y,v 1.55 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
* Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org>
* Copyright (c) 2004 Ryan McBride <mcbride@openbsd.org>
* Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
diff --git a/usr.sbin/hoststated/pfe.c b/usr.sbin/hoststated/pfe.c
index 3419cbe20ce..6b27a81df4f 100644
--- a/usr.sbin/hoststated/pfe.c
+++ b/usr.sbin/hoststated/pfe.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: pfe.c,v 1.35 2007/09/27 07:32:50 pyr Exp $ */
+/* $OpenBSD: pfe.c,v 1.36 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/usr.sbin/hoststated/pfe_filter.c b/usr.sbin/hoststated/pfe_filter.c
index b247cdbfa6e..72a91bb26a2 100644
--- a/usr.sbin/hoststated/pfe_filter.c
+++ b/usr.sbin/hoststated/pfe_filter.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: pfe_filter.c,v 1.17 2007/05/31 03:24:05 pyr Exp $ */
+/* $OpenBSD: pfe_filter.c,v 1.18 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/usr.sbin/hoststated/ssl.c b/usr.sbin/hoststated/ssl.c
index 9c822d2984e..9db92cc07d3 100644
--- a/usr.sbin/hoststated/ssl.c
+++ b/usr.sbin/hoststated/ssl.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: ssl.c,v 1.9 2007/05/27 20:53:10 pyr Exp $ */
+/* $OpenBSD: ssl.c,v 1.10 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/usr.sbin/relayctl/parser.c b/usr.sbin/relayctl/parser.c
index 6f507d1335e..dea2cb5f443 100644
--- a/usr.sbin/relayctl/parser.c
+++ b/usr.sbin/relayctl/parser.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: parser.c,v 1.12 2007/09/07 08:33:31 reyk Exp $ */
+/* $OpenBSD: parser.c,v 1.13 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
* Copyright (c) 2004 Esben Norby <norby@openbsd.org>
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
*
diff --git a/usr.sbin/relayctl/parser.h b/usr.sbin/relayctl/parser.h
index 1116677893c..9d359dfd411 100644
--- a/usr.sbin/relayctl/parser.h
+++ b/usr.sbin/relayctl/parser.h
@@ -1,7 +1,7 @@
-/* $OpenBSD: parser.h,v 1.5 2007/09/07 08:33:31 reyk Exp $ */
+/* $OpenBSD: parser.h,v 1.6 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/usr.sbin/relayctl/relayctl.8 b/usr.sbin/relayctl/relayctl.8
index d9f2c88a150..e8930894586 100644
--- a/usr.sbin/relayctl/relayctl.8
+++ b/usr.sbin/relayctl/relayctl.8
@@ -1,6 +1,6 @@
-.\" $OpenBSD: relayctl.8,v 1.11 2007/09/07 08:33:31 reyk Exp $
+.\" $OpenBSD: relayctl.8,v 1.12 2007/09/28 13:29:56 pyr Exp $
.\"
-.\" Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+.\" Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
.\"
.\" Permission to use, copy, modify, and distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above
@@ -14,7 +14,7 @@
.\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
.\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
.\"
-.Dd $Mdocdate: September 7 2007 $
+.Dd $Mdocdate: September 28 2007 $
.Dt HOSTSTATECTL 8
.Os
.Sh NAME
diff --git a/usr.sbin/relayctl/relayctl.c b/usr.sbin/relayctl/relayctl.c
index 2a3702d73ab..52c9720f6dd 100644
--- a/usr.sbin/relayctl/relayctl.c
+++ b/usr.sbin/relayctl/relayctl.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: relayctl.c,v 1.22 2007/09/07 08:33:31 reyk Exp $ */
+/* $OpenBSD: relayctl.c,v 1.23 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
* Copyright (c) 2005 Claudio Jeker <claudio@openbsd.org>
* Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org>
* Copyright (c) 2003 Henning Brauer <henning@openbsd.org>
diff --git a/usr.sbin/relayd/check_icmp.c b/usr.sbin/relayd/check_icmp.c
index 371505344b8..7c6bfa699d1 100644
--- a/usr.sbin/relayd/check_icmp.c
+++ b/usr.sbin/relayd/check_icmp.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: check_icmp.c,v 1.18 2007/07/16 21:15:36 pyr Exp $ */
+/* $OpenBSD: check_icmp.c,v 1.19 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/usr.sbin/relayd/check_tcp.c b/usr.sbin/relayd/check_tcp.c
index 86e9525f035..3f6125d195a 100644
--- a/usr.sbin/relayd/check_tcp.c
+++ b/usr.sbin/relayd/check_tcp.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: check_tcp.c,v 1.25 2007/06/07 14:17:33 pyr Exp $ */
+/* $OpenBSD: check_tcp.c,v 1.26 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/usr.sbin/relayd/hce.c b/usr.sbin/relayd/hce.c
index 482689fcf66..3514397ec5a 100644
--- a/usr.sbin/relayd/hce.c
+++ b/usr.sbin/relayd/hce.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: hce.c,v 1.29 2007/06/19 13:06:00 pyr Exp $ */
+/* $OpenBSD: hce.c,v 1.30 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/usr.sbin/relayd/parse.y b/usr.sbin/relayd/parse.y
index 53ea7fedd00..bd0ae78099a 100644
--- a/usr.sbin/relayd/parse.y
+++ b/usr.sbin/relayd/parse.y
@@ -1,7 +1,7 @@
-/* $OpenBSD: parse.y,v 1.54 2007/09/10 11:59:22 reyk Exp $ */
+/* $OpenBSD: parse.y,v 1.55 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
* Copyright (c) 2004, 2005 Esben Norby <norby@openbsd.org>
* Copyright (c) 2004 Ryan McBride <mcbride@openbsd.org>
* Copyright (c) 2002, 2003, 2004 Henning Brauer <henning@openbsd.org>
diff --git a/usr.sbin/relayd/pfe.c b/usr.sbin/relayd/pfe.c
index 3419cbe20ce..6b27a81df4f 100644
--- a/usr.sbin/relayd/pfe.c
+++ b/usr.sbin/relayd/pfe.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: pfe.c,v 1.35 2007/09/27 07:32:50 pyr Exp $ */
+/* $OpenBSD: pfe.c,v 1.36 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/usr.sbin/relayd/pfe_filter.c b/usr.sbin/relayd/pfe_filter.c
index b247cdbfa6e..72a91bb26a2 100644
--- a/usr.sbin/relayd/pfe_filter.c
+++ b/usr.sbin/relayd/pfe_filter.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: pfe_filter.c,v 1.17 2007/05/31 03:24:05 pyr Exp $ */
+/* $OpenBSD: pfe_filter.c,v 1.18 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/usr.sbin/relayd/relayd.c b/usr.sbin/relayd/relayd.c
index 22a72cf18c1..5f2d0bb5735 100644
--- a/usr.sbin/relayd/relayd.c
+++ b/usr.sbin/relayd/relayd.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: relayd.c,v 1.39 2007/09/05 08:48:42 reyk Exp $ */
+/* $OpenBSD: relayd.c,v 1.40 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
diff --git a/usr.sbin/relayd/relayd.conf.5 b/usr.sbin/relayd/relayd.conf.5
index 7cc7c281a5c..e8d8f073c73 100644
--- a/usr.sbin/relayd/relayd.conf.5
+++ b/usr.sbin/relayd/relayd.conf.5
@@ -1,7 +1,7 @@
-.\" $OpenBSD: relayd.conf.5,v 1.51 2007/09/28 07:20:46 jmc Exp $
+.\" $OpenBSD: relayd.conf.5,v 1.52 2007/09/28 13:29:56 pyr Exp $
.\"
.\" Copyright (c) 2006, 2007 Reyk Floeter <reyk@openbsd.org>
-.\" Copyright (c) 2006, 2007 Pierre-Yves Ritschard <pyr@spootnik.org>
+.\" Copyright (c) 2006, 2007 Pierre-Yves Ritschard <pyr@openbsd.org>
.\"
.\" Permission to use, copy, modify, and distribute this software for any
.\" purpose with or without fee is hereby granted, provided that the above
diff --git a/usr.sbin/relayd/relayd.h b/usr.sbin/relayd/relayd.h
index f261e2a63be..920ee1379d8 100644
--- a/usr.sbin/relayd/relayd.h
+++ b/usr.sbin/relayd/relayd.h
@@ -1,7 +1,7 @@
-/* $OpenBSD: relayd.h,v 1.63 2007/09/28 13:05:28 pyr Exp $ */
+/* $OpenBSD: relayd.h,v 1.64 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006, 2007 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006, 2007 Pierre-Yves Ritschard <pyr@openbsd.org>
* Copyright (c) 2006, 2007 Reyk Floeter <reyk@openbsd.org>
* Copyright (c) 2003, 2004 Henning Brauer <henning@openbsd.org>
*
diff --git a/usr.sbin/relayd/ssl.c b/usr.sbin/relayd/ssl.c
index 9c822d2984e..9db92cc07d3 100644
--- a/usr.sbin/relayd/ssl.c
+++ b/usr.sbin/relayd/ssl.c
@@ -1,7 +1,7 @@
-/* $OpenBSD: ssl.c,v 1.9 2007/05/27 20:53:10 pyr Exp $ */
+/* $OpenBSD: ssl.c,v 1.10 2007/09/28 13:29:56 pyr Exp $ */
/*
- * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@spootnik.org>
+ * Copyright (c) 2006 Pierre-Yves Ritschard <pyr@openbsd.org>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above