summaryrefslogtreecommitdiff
path: root/usr.bin/tftp
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-06-26 05:44:45 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-06-26 05:44:45 +0000
commitf78c2ff8497d138d7dcd5ffdd1762b8506ac023a (patch)
treed866f71b8ad5a1e57f31fa90b31e9c70af075787 /usr.bin/tftp
parent79e97129ab796ff93029b3a8d0d89519754bfece (diff)
rcsid
Diffstat (limited to 'usr.bin/tftp')
-rw-r--r--usr.bin/tftp/Makefile2
-rw-r--r--usr.bin/tftp/extern.h1
-rw-r--r--usr.bin/tftp/main.c3
-rw-r--r--usr.bin/tftp/tftp.11
-rw-r--r--usr.bin/tftp/tftp.c3
-rw-r--r--usr.bin/tftp/tftpsubs.c3
-rw-r--r--usr.bin/tftp/tftpsubs.h1
7 files changed, 10 insertions, 4 deletions
diff --git a/usr.bin/tftp/Makefile b/usr.bin/tftp/Makefile
index c2f36b6bdd5..10e2b97e8c5 100644
--- a/usr.bin/tftp/Makefile
+++ b/usr.bin/tftp/Makefile
@@ -1,5 +1,5 @@
+# $OpenBSD: Makefile,v 1.2 1996/06/26 05:40:33 deraadt Exp $
# $NetBSD: Makefile,v 1.3 1994/12/08 09:51:23 jtc Exp $
-# @(#)Makefile 8.1 (Berkeley) 6/6/93
PROG= tftp
SRCS= main.c tftp.c tftpsubs.c
diff --git a/usr.bin/tftp/extern.h b/usr.bin/tftp/extern.h
index 7c4e679f87c..faddc0b22dd 100644
--- a/usr.bin/tftp/extern.h
+++ b/usr.bin/tftp/extern.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: extern.h,v 1.2 1996/06/26 05:40:33 deraadt Exp $ */
/* $NetBSD: extern.h,v 1.2 1994/12/08 09:51:24 jtc Exp $ */
/*
diff --git a/usr.bin/tftp/main.c b/usr.bin/tftp/main.c
index 1595cadef5a..c27ca9cdc60 100644
--- a/usr.bin/tftp/main.c
+++ b/usr.bin/tftp/main.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: main.c,v 1.2 1996/06/26 05:40:34 deraadt Exp $ */
/* $NetBSD: main.c,v 1.6 1995/05/21 16:54:10 mycroft Exp $ */
/*
@@ -43,7 +44,7 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)main.c 8.1 (Berkeley) 6/6/93";
#endif
-static char rcsid[] = "$NetBSD: main.c,v 1.6 1995/05/21 16:54:10 mycroft Exp $";
+static char rcsid[] = "$OpenBSD: main.c,v 1.2 1996/06/26 05:40:34 deraadt Exp $";
#endif /* not lint */
/* Many bug fixes are from Jim Guyton <guyton@rand-unix> */
diff --git a/usr.bin/tftp/tftp.1 b/usr.bin/tftp/tftp.1
index 8a4b7a7172d..f09aeeaa0d7 100644
--- a/usr.bin/tftp/tftp.1
+++ b/usr.bin/tftp/tftp.1
@@ -1,3 +1,4 @@
+.\" $OpenBSD: tftp.1,v 1.2 1996/06/26 05:40:35 deraadt Exp $
.\" $NetBSD: tftp.1,v 1.5 1995/08/18 14:45:44 pk Exp $
.\"
.\" Copyright (c) 1990, 1993, 1994
diff --git a/usr.bin/tftp/tftp.c b/usr.bin/tftp/tftp.c
index d7097969717..d813f9bc55b 100644
--- a/usr.bin/tftp/tftp.c
+++ b/usr.bin/tftp/tftp.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: tftp.c,v 1.2 1996/06/26 05:40:35 deraadt Exp $ */
/* $NetBSD: tftp.c,v 1.5 1995/04/29 05:55:25 cgd Exp $ */
/*
@@ -37,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)tftp.c 8.1 (Berkeley) 6/6/93";
#endif
-static char rcsid[] = "$NetBSD: tftp.c,v 1.5 1995/04/29 05:55:25 cgd Exp $";
+static char rcsid[] = "$OpenBSD: tftp.c,v 1.2 1996/06/26 05:40:35 deraadt Exp $";
#endif /* not lint */
/* Many bug fixes are from Jim Guyton <guyton@rand-unix> */
diff --git a/usr.bin/tftp/tftpsubs.c b/usr.bin/tftp/tftpsubs.c
index de1d37199f7..8151a40c853 100644
--- a/usr.bin/tftp/tftpsubs.c
+++ b/usr.bin/tftp/tftpsubs.c
@@ -1,3 +1,4 @@
+/* $OpenBSD: tftpsubs.c,v 1.2 1996/06/26 05:40:36 deraadt Exp $ */
/* $NetBSD: tftpsubs.c,v 1.3 1994/12/08 09:51:31 jtc Exp $ */
/*
@@ -37,7 +38,7 @@
#if 0
static char sccsid[] = "@(#)tftpsubs.c 8.1 (Berkeley) 6/6/93";
#endif
-static char rcsid[] = "$NetBSD: tftpsubs.c,v 1.3 1994/12/08 09:51:31 jtc Exp $";
+static char rcsid[] = "$OpenBSD: tftpsubs.c,v 1.2 1996/06/26 05:40:36 deraadt Exp $";
#endif /* not lint */
/* Simple minded read-ahead/write-behind subroutines for tftp user and
diff --git a/usr.bin/tftp/tftpsubs.h b/usr.bin/tftp/tftpsubs.h
index 5fc6316a060..626f6c09999 100644
--- a/usr.bin/tftp/tftpsubs.h
+++ b/usr.bin/tftp/tftpsubs.h
@@ -1,3 +1,4 @@
+/* $OpenBSD: tftpsubs.h,v 1.2 1996/06/26 05:40:37 deraadt Exp $ */
/* $NetBSD: tftpsubs.h,v 1.2 1994/12/08 09:51:32 jtc Exp $ */
/*