]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Get rid of cobwebs.
authorTed Lemon <source@isc.org>
Fri, 24 Mar 2000 00:22:20 +0000 (00:22 +0000)
committerTed Lemon <source@isc.org>
Fri, 24 Mar 2000 00:22:20 +0000 (00:22 +0000)
common/ethernet.c

index 573e0d1b7e2d4dd1945a9ebf9ec75311a9ffeda0..772392e9f2c7c4c2ef2e423f17c04d9e7c33e7ff 100644 (file)
@@ -1,4 +1,4 @@
-/* packet.c
+/* ethernet.c
 
    Packet assembly code, originally contributed by Archie Cobbs. */
 
@@ -43,7 +43,7 @@
 
 #ifndef lint
 static char copyright[] =
-"$Id: ethernet.c,v 1.5 2000/03/17 03:59:01 mellon Exp $ Copyright (c) 1996-2000 The Internet Software Consortium.  All rights reserved.\n";
+"$Id: ethernet.c,v 1.6 2000/03/24 00:22:20 mellon Exp $ Copyright (c) 1996-2000 The Internet Software Consortium.  All rights reserved.\n";
 #endif /* not lint */
 
 #include "dhcpd.h"
@@ -54,7 +54,6 @@ static char copyright[] =
 
 #if defined (PACKET_ASSEMBLY)
 /* Assemble an hardware header... */
-/* XXX currently only supports ethernet; doesn't check for other types. */
 
 void assemble_ethernet_header (interface, buf, bufix, to)
        struct interface_info *interface;
@@ -75,11 +74,7 @@ void assemble_ethernet_header (interface, buf, bufix, to)
        else
                memset (eh.ether_shost, 0x00, sizeof (eh.ether_shost));
 
-#ifdef BROKEN_FREEBSD_BPF /* Fixed in FreeBSD 2.2 */
-       eh.ether_type = ETHERTYPE_IP;
-#else
        eh.ether_type = htons (ETHERTYPE_IP);
-#endif
 
        memcpy (&buf [*bufix], &eh, ETHER_HEADER_SIZE);
        *bufix += ETHER_HEADER_SIZE;