aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/faithd
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/faithd')
-rw-r--r--usr.sbin/faithd/Makefile2
-rw-r--r--usr.sbin/faithd/README2
-rw-r--r--usr.sbin/faithd/faithd.82
-rw-r--r--usr.sbin/faithd/faithd.c2
-rw-r--r--usr.sbin/faithd/faithd.h2
-rw-r--r--usr.sbin/faithd/ftp.c2
-rw-r--r--usr.sbin/faithd/rsh.c2
-rw-r--r--usr.sbin/faithd/tcp.c2
-rw-r--r--usr.sbin/faithd/test/faithd.rb2
9 files changed, 9 insertions, 9 deletions
diff --git a/usr.sbin/faithd/Makefile b/usr.sbin/faithd/Makefile
index c40c21de0c44..0d1fbee65212 100644
--- a/usr.sbin/faithd/Makefile
+++ b/usr.sbin/faithd/Makefile
@@ -11,7 +11,7 @@
# AND WITHOUT ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, WITHOUT
# LIMITATION, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
# A PARTICULAR PURPOSE.
-# $FreeBSD$
+# $FreeBSD: src/usr.sbin/faithd/Makefile,v 1.1 2000/01/27 09:28:34 shin Exp $
PROG= faithd
SRCS= faithd.c tcp.c ftp.c rsh.c
diff --git a/usr.sbin/faithd/README b/usr.sbin/faithd/README
index 47d7a2d690f2..78b6c3e7091b 100644
--- a/usr.sbin/faithd/README
+++ b/usr.sbin/faithd/README
@@ -2,7 +2,7 @@ Configuring FAITH IPv6-to-IPv4 TCP relay
Kazu Yamamoto and Jun-ichiro itojun Hagino
$Id: README,v 1.1.1.1 1999/08/08 23:29:27 itojun Exp $
-$FreeBSD$
+$FreeBSD: src/usr.sbin/faithd/README,v 1.2 2000/02/10 19:42:41 shin Exp $
Introduction
diff --git a/usr.sbin/faithd/faithd.8 b/usr.sbin/faithd/faithd.8
index 1cca7283978a..84c3b939021c 100644
--- a/usr.sbin/faithd/faithd.8
+++ b/usr.sbin/faithd/faithd.8
@@ -26,7 +26,7 @@
.\" SUCH DAMAGE.
.\"
.\" $Id: faithd.8,v 1.3 1999/10/07 04:22:14 itojun Exp $
-.\" $FreeBSD$
+.\" $FreeBSD: src/usr.sbin/faithd/faithd.8,v 1.2 2000/02/10 19:42:41 shin Exp $
.\"
.Dd January 27, 2000
.Dt FAITHD 8
diff --git a/usr.sbin/faithd/faithd.c b/usr.sbin/faithd/faithd.c
index 6c4a6a4a0ca9..9437ef3de3ce 100644
--- a/usr.sbin/faithd/faithd.c
+++ b/usr.sbin/faithd/faithd.c
@@ -26,7 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.sbin/faithd/faithd.c,v 1.2 2000/02/10 19:42:42 shin Exp $
*/
/*
diff --git a/usr.sbin/faithd/faithd.h b/usr.sbin/faithd/faithd.h
index 55566edc030c..03e4e7d54757 100644
--- a/usr.sbin/faithd/faithd.h
+++ b/usr.sbin/faithd/faithd.h
@@ -26,7 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.sbin/faithd/faithd.h,v 1.1 2000/01/27 09:28:36 shin Exp $
*/
extern char logname[];
diff --git a/usr.sbin/faithd/ftp.c b/usr.sbin/faithd/ftp.c
index b45017aeebb5..edd65df6511a 100644
--- a/usr.sbin/faithd/ftp.c
+++ b/usr.sbin/faithd/ftp.c
@@ -26,7 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.sbin/faithd/ftp.c,v 1.2 2000/02/10 19:42:42 shin Exp $
*/
#include <sys/param.h>
diff --git a/usr.sbin/faithd/rsh.c b/usr.sbin/faithd/rsh.c
index e66ced1ee811..36a400dfeeb5 100644
--- a/usr.sbin/faithd/rsh.c
+++ b/usr.sbin/faithd/rsh.c
@@ -26,7 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.sbin/faithd/rsh.c,v 1.2 2000/02/10 19:42:42 shin Exp $
*/
#include <sys/param.h>
diff --git a/usr.sbin/faithd/tcp.c b/usr.sbin/faithd/tcp.c
index e1e1b328c2b1..922b998612e1 100644
--- a/usr.sbin/faithd/tcp.c
+++ b/usr.sbin/faithd/tcp.c
@@ -26,7 +26,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $FreeBSD$
+ * $FreeBSD: src/usr.sbin/faithd/tcp.c,v 1.1 2000/01/27 09:28:37 shin Exp $
*/
#include <sys/param.h>
diff --git a/usr.sbin/faithd/test/faithd.rb b/usr.sbin/faithd/test/faithd.rb
index 683b5041adc1..acd3c427b880 100644
--- a/usr.sbin/faithd/test/faithd.rb
+++ b/usr.sbin/faithd/test/faithd.rb
@@ -4,7 +4,7 @@
# functionality.
#
# $Id: faithd.rb,v 1.1.1.1 1999/08/08 23:29:31 itojun Exp $
-# $FreeBSD$
+# $FreeBSD: src/usr.sbin/faithd/test/faithd.rb,v 1.1 2000/01/27 09:28:38 shin Exp $
require "socket"
require "thread"