aboutsummaryrefslogtreecommitdiff
path: root/libexec/tftpd
diff options
context:
space:
mode:
Diffstat (limited to 'libexec/tftpd')
-rw-r--r--libexec/tftpd/Makefile2
-rw-r--r--libexec/tftpd/tftp-file.c2
-rw-r--r--libexec/tftpd/tftp-file.h2
-rw-r--r--libexec/tftpd/tftp-io.c2
-rw-r--r--libexec/tftpd/tftp-io.h2
-rw-r--r--libexec/tftpd/tftp-options.c2
-rw-r--r--libexec/tftpd/tftp-options.h2
-rw-r--r--libexec/tftpd/tftp-transfer.c2
-rw-r--r--libexec/tftpd/tftp-transfer.h2
-rw-r--r--libexec/tftpd/tftp-utils.c2
-rw-r--r--libexec/tftpd/tftp-utils.h2
-rw-r--r--libexec/tftpd/tftpd.82
-rw-r--r--libexec/tftpd/tftpd.c2
13 files changed, 13 insertions, 13 deletions
diff --git a/libexec/tftpd/Makefile b/libexec/tftpd/Makefile
index 2b7770c393d8..8fa36cec0274 100644
--- a/libexec/tftpd/Makefile
+++ b/libexec/tftpd/Makefile
@@ -1,5 +1,5 @@
# @(#)Makefile 8.1 (Berkeley) 6/4/93
-# $FreeBSD$
+# $FreeBSD: src/libexec/tftpd/Makefile,v 1.10.2.4.4.1 2012/03/03 06:15:13 kensmith Exp $
PROG= tftpd
MAN= tftpd.8
diff --git a/libexec/tftpd/tftp-file.c b/libexec/tftpd/tftp-file.c
index 6b8fb6e83c15..8a3601a08518 100644
--- a/libexec/tftpd/tftp-file.c
+++ b/libexec/tftpd/tftp-file.c
@@ -24,7 +24,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/libexec/tftpd/tftp-file.c,v 1.1.2.4.2.1 2012/03/03 06:15:13 kensmith Exp $");
#include <sys/types.h>
#include <sys/ioctl.h>
diff --git a/libexec/tftpd/tftp-file.h b/libexec/tftpd/tftp-file.h
index fcc4d0d03214..d7f9156f2d76 100644
--- a/libexec/tftpd/tftp-file.h
+++ b/libexec/tftpd/tftp-file.h
@@ -24,7 +24,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/libexec/tftpd/tftp-file.h,v 1.1.2.2.4.1 2012/03/03 06:15:13 kensmith Exp $");
int write_init(int fd, FILE *f, const char *mode);
size_t write_file(char *buffer, int count);
diff --git a/libexec/tftpd/tftp-io.c b/libexec/tftpd/tftp-io.c
index bc5379cb99bc..51bff7b4345f 100644
--- a/libexec/tftpd/tftp-io.c
+++ b/libexec/tftpd/tftp-io.c
@@ -24,7 +24,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/libexec/tftpd/tftp-io.c,v 1.2.2.3.2.1 2012/03/03 06:15:13 kensmith Exp $");
#include <sys/stat.h>
#include <sys/types.h>
diff --git a/libexec/tftpd/tftp-io.h b/libexec/tftpd/tftp-io.h
index 70558bc634e7..2046c8fbf143 100644
--- a/libexec/tftpd/tftp-io.h
+++ b/libexec/tftpd/tftp-io.h
@@ -24,7 +24,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/libexec/tftpd/tftp-io.h,v 1.1.2.2.4.1 2012/03/03 06:15:13 kensmith Exp $");
#define RP_NONE 0
#define RP_RECVFROM -1
diff --git a/libexec/tftpd/tftp-options.c b/libexec/tftpd/tftp-options.c
index d5b638692044..e84928a961c0 100644
--- a/libexec/tftpd/tftp-options.c
+++ b/libexec/tftpd/tftp-options.c
@@ -24,7 +24,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/libexec/tftpd/tftp-options.c,v 1.1.2.3.4.1 2012/03/03 06:15:13 kensmith Exp $");
#include <sys/socket.h>
#include <sys/types.h>
diff --git a/libexec/tftpd/tftp-options.h b/libexec/tftpd/tftp-options.h
index d8bd2fc6daa7..a7e77d12e5ca 100644
--- a/libexec/tftpd/tftp-options.h
+++ b/libexec/tftpd/tftp-options.h
@@ -24,7 +24,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/libexec/tftpd/tftp-options.h,v 1.1.2.2.4.1 2012/03/03 06:15:13 kensmith Exp $");
/*
* Options
diff --git a/libexec/tftpd/tftp-transfer.c b/libexec/tftpd/tftp-transfer.c
index d0c8a95665ab..3c44e1fcc44c 100644
--- a/libexec/tftpd/tftp-transfer.c
+++ b/libexec/tftpd/tftp-transfer.c
@@ -24,7 +24,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/libexec/tftpd/tftp-transfer.c,v 1.1.2.3.2.1 2012/03/03 06:15:13 kensmith Exp $");
#include <sys/types.h>
#include <sys/param.h>
diff --git a/libexec/tftpd/tftp-transfer.h b/libexec/tftpd/tftp-transfer.h
index 2cfa2df8ee88..e2e7de333af0 100644
--- a/libexec/tftpd/tftp-transfer.h
+++ b/libexec/tftpd/tftp-transfer.h
@@ -24,7 +24,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/libexec/tftpd/tftp-transfer.h,v 1.1.2.2.4.1 2012/03/03 06:15:13 kensmith Exp $");
void tftp_send(int peer, uint16_t *block, struct tftp_stats *tp);
void tftp_receive(int peer, uint16_t *block, struct tftp_stats *tp,
diff --git a/libexec/tftpd/tftp-utils.c b/libexec/tftpd/tftp-utils.c
index 5613dd1a4925..405e7ba929a7 100644
--- a/libexec/tftpd/tftp-utils.c
+++ b/libexec/tftpd/tftp-utils.c
@@ -24,7 +24,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/libexec/tftpd/tftp-utils.c,v 1.1.2.4.4.1 2012/03/03 06:15:13 kensmith Exp $");
#include <sys/socket.h>
#include <sys/stat.h>
diff --git a/libexec/tftpd/tftp-utils.h b/libexec/tftpd/tftp-utils.h
index 0468612d9d74..ff4aec018805 100644
--- a/libexec/tftpd/tftp-utils.h
+++ b/libexec/tftpd/tftp-utils.h
@@ -24,7 +24,7 @@
*/
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/libexec/tftpd/tftp-utils.h,v 1.1.2.4.2.1 2012/03/03 06:15:13 kensmith Exp $");
/*
*/
diff --git a/libexec/tftpd/tftpd.8 b/libexec/tftpd/tftpd.8
index 7c3da085b77c..4337c1b5ce53 100644
--- a/libexec/tftpd/tftpd.8
+++ b/libexec/tftpd/tftpd.8
@@ -30,7 +30,7 @@
.\" SUCH DAMAGE.
.\"
.\" @(#)tftpd.8 8.1 (Berkeley) 6/4/93
-.\" $FreeBSD$
+.\" $FreeBSD: src/libexec/tftpd/tftpd.8,v 1.23.2.5.2.1 2012/03/03 06:15:13 kensmith Exp $
.\"
.Dd June 22, 2011
.Dt TFTPD 8
diff --git a/libexec/tftpd/tftpd.c b/libexec/tftpd/tftpd.c
index 16702b70cb1f..ede87c65fc8a 100644
--- a/libexec/tftpd/tftpd.c
+++ b/libexec/tftpd/tftpd.c
@@ -43,7 +43,7 @@ static char sccsid[] = "@(#)tftpd.c 8.1 (Berkeley) 6/4/93";
#endif
#endif /* not lint */
#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
+__FBSDID("$FreeBSD: src/libexec/tftpd/tftpd.c,v 1.38.2.4.4.1 2012/03/03 06:15:13 kensmith Exp $");
/*
* Trivial file transfer protocol server.