diff options
| author | Wolfram Schneider <wosch@FreeBSD.org> | 1996-09-22 21:56:57 +0000 |
|---|---|---|
| committer | Wolfram Schneider <wosch@FreeBSD.org> | 1996-09-22 21:56:57 +0000 |
| commit | 148531ef1e6681bf21fa82c8afd667377b9c057f (patch) | |
| tree | 4867a3bdc9ae39645860d414e03dc04a0418a63a /libexec/bootpd | |
| parent | 3f8ba9ae3e5875d5550eb586b6c3a64adbabb639 (diff) | |
Notes
Diffstat (limited to 'libexec/bootpd')
| -rw-r--r-- | libexec/bootpd/Announce | 1 | ||||
| -rw-r--r-- | libexec/bootpd/Changes | 2 | ||||
| -rw-r--r-- | libexec/bootpd/Makefile.UNIX | 1 | ||||
| -rw-r--r-- | libexec/bootpd/Problems | 1 | ||||
| -rw-r--r-- | libexec/bootpd/README | 1 | ||||
| -rw-r--r-- | libexec/bootpd/bootpd.c | 3 | ||||
| -rw-r--r-- | libexec/bootpd/bootptab.mcs | 2 | ||||
| -rw-r--r-- | libexec/bootpd/dovend.c | 2 | ||||
| -rw-r--r-- | libexec/bootpd/dumptab.c | 2 | ||||
| -rw-r--r-- | libexec/bootpd/getether.c | 2 | ||||
| -rw-r--r-- | libexec/bootpd/getif.c | 2 | ||||
| -rw-r--r-- | libexec/bootpd/hash.c | 3 | ||||
| -rw-r--r-- | libexec/bootpd/hwaddr.c | 2 | ||||
| -rw-r--r-- | libexec/bootpd/hwaddr.h | 7 | ||||
| -rw-r--r-- | libexec/bootpd/lookup.c | 2 | ||||
| -rw-r--r-- | libexec/bootpd/patchlevel.h | 7 | ||||
| -rw-r--r-- | libexec/bootpd/readfile.c | 3 | ||||
| -rw-r--r-- | libexec/bootpd/tools/bootpef/bootpef.c | 3 | ||||
| -rw-r--r-- | libexec/bootpd/tools/bootptest/bootptest.c | 2 | ||||
| -rw-r--r-- | libexec/bootpd/tools/bootptest/print-bootp.c | 2 | ||||
| -rw-r--r-- | libexec/bootpd/trygetea.c | 2 | ||||
| -rw-r--r-- | libexec/bootpd/trygetif.c | 2 | ||||
| -rw-r--r-- | libexec/bootpd/trylook.c | 2 |
23 files changed, 54 insertions, 2 deletions
diff --git a/libexec/bootpd/Announce b/libexec/bootpd/Announce index a76e18acd2a96..a605c6a98fdaf 100644 --- a/libexec/bootpd/Announce +++ b/libexec/bootpd/Announce @@ -1,3 +1,4 @@ +# $Id$ This is an enhanced version of the CMU BOOTP server which was derived from the original BOOTP server created by Bill Croft at Stanford. diff --git a/libexec/bootpd/Changes b/libexec/bootpd/Changes index b08989e7b0aa9..23310e1cf2858 100644 --- a/libexec/bootpd/Changes +++ b/libexec/bootpd/Changes @@ -1,3 +1,5 @@ +# $Id$ + Changes, most recent first Date, <email> Real Name what... diff --git a/libexec/bootpd/Makefile.UNIX b/libexec/bootpd/Makefile.UNIX index 701eb2bcc1068..50187dae4588f 100644 --- a/libexec/bootpd/Makefile.UNIX +++ b/libexec/bootpd/Makefile.UNIX @@ -1,3 +1,4 @@ +# $Id$ # # Makefile for the BOOTP programs: # bootpd - BOOTP server daemon diff --git a/libexec/bootpd/Problems b/libexec/bootpd/Problems index 78d809e6b215a..bec9ac0faa1c6 100644 --- a/libexec/bootpd/Problems +++ b/libexec/bootpd/Problems @@ -1,3 +1,4 @@ +# $Id$ Common problems and ways to work around them: diff --git a/libexec/bootpd/README b/libexec/bootpd/README index 0901b25785985..ddfaebe9bab3e 100644 --- a/libexec/bootpd/README +++ b/libexec/bootpd/README @@ -1,3 +1,4 @@ +# $Id$ This is an enhanced version of the CMU BOOTP server which was derived from the original BOOTP server created by Bill Croft at Stanford. diff --git a/libexec/bootpd/bootpd.c b/libexec/bootpd/bootpd.c index 6ab769e49845d..db4eecd4101fd 100644 --- a/libexec/bootpd/bootpd.c +++ b/libexec/bootpd/bootpd.c @@ -18,6 +18,9 @@ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + $Id$ + ************************************************************************/ /* diff --git a/libexec/bootpd/bootptab.mcs b/libexec/bootpd/bootptab.mcs index 2f8b3a6ff3042..a798f8afa9e17 100644 --- a/libexec/bootpd/bootptab.mcs +++ b/libexec/bootpd/bootptab.mcs @@ -2,6 +2,8 @@ # Last update: gwr, Sun Dec 12 19:00:00 EDT 1993 # Blank lines and lines beginning with '#' are ignored. # +# $Id$ +# # Legend: (see bootptab.5) # first field -- hostname (not indented) # bf -- bootfile diff --git a/libexec/bootpd/dovend.c b/libexec/bootpd/dovend.c index e46ae9e4308d5..447826f3ca0ee 100644 --- a/libexec/bootpd/dovend.c +++ b/libexec/bootpd/dovend.c @@ -1,5 +1,7 @@ /* * dovend.c : Inserts all but the first few vendor options. + * + * $Id$ */ #include <sys/types.h> diff --git a/libexec/bootpd/dumptab.c b/libexec/bootpd/dumptab.c index 8c049b99debaa..3827fd99b00eb 100644 --- a/libexec/bootpd/dumptab.c +++ b/libexec/bootpd/dumptab.c @@ -1,5 +1,7 @@ /* * dumptab.c - handles dumping the database + * + * $Id$ */ #include <sys/types.h> diff --git a/libexec/bootpd/getether.c b/libexec/bootpd/getether.c index 71d576a36a09d..c396c8125484b 100644 --- a/libexec/bootpd/getether.c +++ b/libexec/bootpd/getether.c @@ -6,6 +6,8 @@ * * If you figure out how to do this on another system, * please let me know. <gwr@mc.com> + * + * $Id$ */ #include <sys/types.h> diff --git a/libexec/bootpd/getif.c b/libexec/bootpd/getif.c index c9c08cd0d48a4..eeff50f081d23 100644 --- a/libexec/bootpd/getif.c +++ b/libexec/bootpd/getif.c @@ -1,5 +1,7 @@ /* * getif.c : get an interface structure + * + * $Id$ */ #include <sys/types.h> diff --git a/libexec/bootpd/hash.c b/libexec/bootpd/hash.c index 9637c9ae85dc3..f9597513f8b9c 100644 --- a/libexec/bootpd/hash.c +++ b/libexec/bootpd/hash.c @@ -18,6 +18,9 @@ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + $Id$ + ************************************************************************/ /* diff --git a/libexec/bootpd/hwaddr.c b/libexec/bootpd/hwaddr.c index 81c1c98aed7c7..bc41cff2d7e69 100644 --- a/libexec/bootpd/hwaddr.c +++ b/libexec/bootpd/hwaddr.c @@ -1,6 +1,8 @@ /* * hwaddr.c - routines that deal with hardware addresses. * (i.e. Ethernet) + * + * $Id$ */ #include <sys/types.h> diff --git a/libexec/bootpd/hwaddr.h b/libexec/bootpd/hwaddr.h index 8b40799feff14..b0a8c290801be 100644 --- a/libexec/bootpd/hwaddr.h +++ b/libexec/bootpd/hwaddr.h @@ -1,4 +1,9 @@ -/* hwaddr.h */ +/* + * hwaddr.h + * + * $Id$ + */ + #ifndef HWADDR_H #define HWADDR_H diff --git a/libexec/bootpd/lookup.c b/libexec/bootpd/lookup.c index c99f1b80da0e5..ed1a27cbe2cf9 100644 --- a/libexec/bootpd/lookup.c +++ b/libexec/bootpd/lookup.c @@ -1,5 +1,7 @@ /* * lookup.c - Lookup IP address, HW address, netmask + * + * $Id$ */ #include <sys/types.h> diff --git a/libexec/bootpd/patchlevel.h b/libexec/bootpd/patchlevel.h index 3909c641874e2..85566b5015a97 100644 --- a/libexec/bootpd/patchlevel.h +++ b/libexec/bootpd/patchlevel.h @@ -1,3 +1,8 @@ -/* patchlevel.h */ +/* + * patchlevel.h + * + * $Id$ + */ + #define VERSION "2.4" #define PATCHLEVEL 3 diff --git a/libexec/bootpd/readfile.c b/libexec/bootpd/readfile.c index f7fbdc07f520a..8dfd43023d0ba 100644 --- a/libexec/bootpd/readfile.c +++ b/libexec/bootpd/readfile.c @@ -18,6 +18,9 @@ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + $Id$ + ************************************************************************/ /* diff --git a/libexec/bootpd/tools/bootpef/bootpef.c b/libexec/bootpd/tools/bootpef/bootpef.c index 3ffe50be08cb7..c7e927687dbfd 100644 --- a/libexec/bootpd/tools/bootpef/bootpef.c +++ b/libexec/bootpd/tools/bootpef/bootpef.c @@ -18,6 +18,9 @@ DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + + $Id$ + ************************************************************************/ /* diff --git a/libexec/bootpd/tools/bootptest/bootptest.c b/libexec/bootpd/tools/bootptest/bootptest.c index c4e38d4121440..2e2311284fc20 100644 --- a/libexec/bootpd/tools/bootptest/bootptest.c +++ b/libexec/bootpd/tools/bootptest/bootptest.c @@ -30,6 +30,8 @@ * 10/11/93 Released version 1.1 * 09/28/93 Released version 1.0 * 09/93 Original developed by Gordon W. Ross <gwr@mc.com> + * + * $Id$ */ char *usage = "bootptest [-h] server-name [vendor-data-template-file]"; diff --git a/libexec/bootpd/tools/bootptest/print-bootp.c b/libexec/bootpd/tools/bootptest/print-bootp.c index ff31670a45c90..8390321912a39 100644 --- a/libexec/bootpd/tools/bootptest/print-bootp.c +++ b/libexec/bootpd/tools/bootptest/print-bootp.c @@ -22,6 +22,8 @@ * * This file was copied from tcpdump-2.1.1 and modified. * There is an e-mail list for tcpdump: <tcpdump@ee.lbl.gov> + * + * $Id$ */ #include <stdio.h> diff --git a/libexec/bootpd/trygetea.c b/libexec/bootpd/trygetea.c index 5510995386e90..41800d78c1260 100644 --- a/libexec/bootpd/trygetea.c +++ b/libexec/bootpd/trygetea.c @@ -1,5 +1,7 @@ /* * trygetea.c - test program for getether.c + * + * $Id$ */ #include <sys/types.h> diff --git a/libexec/bootpd/trygetif.c b/libexec/bootpd/trygetif.c index 8c78ee34247a3..e6226dcb9ef01 100644 --- a/libexec/bootpd/trygetif.c +++ b/libexec/bootpd/trygetif.c @@ -1,5 +1,7 @@ /* * trygetif.c - test program for getif.c + * + * $Id$ */ #include <sys/types.h> diff --git a/libexec/bootpd/trylook.c b/libexec/bootpd/trylook.c index 0479166d2f353..0681dceebbc44 100644 --- a/libexec/bootpd/trylook.c +++ b/libexec/bootpd/trylook.c @@ -1,5 +1,7 @@ /* * trylook.c - test program for lookup.c + * + * $Id$ */ #include <sys/types.h> |
