]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Fix some typos. Don't call the token ring decoder for FDDI.
authorTed Lemon <source@isc.org>
Fri, 14 Apr 2000 16:22:04 +0000 (16:22 +0000)
committerTed Lemon <source@isc.org>
Fri, 14 Apr 2000 16:22:04 +0000 (16:22 +0000)
common/packet.c

index 3070b841454d875459f5d32ccfc8bbf2e7ecf378..5099c112df53900ae033f4fd21185673b55c8a4d 100644 (file)
@@ -42,7 +42,7 @@
 
 #ifndef lint
 static char copyright[] =
-"$Id: packet.c,v 1.33 2000/03/24 00:22:41 mellon Exp $ Copyright (c) 1996-2000 The Internet Software Consortium.  All rights reserved.\n";
+"$Id: packet.c,v 1.34 2000/04/14 16:22:04 mellon Exp $ Copyright (c) 1996-2000 The Internet Software Consortium.  All rights reserved.\n";
 #endif /* not lint */
 
 #include "dhcpd.h"
@@ -125,7 +125,7 @@ void assemble_hw_header (interface, buf, bufix, to)
        else
 #endif
 #if defined (DEC_FDDI)
-            if (interface -> hw_address.hbuf [i] == HTYPE_FDDI)
+            if (interface -> hw_address.hbuf [0] == HTYPE_FDDI)
                     assemble_fddi_header (interface, buf, bufix, to);
        else
 #endif
@@ -210,8 +210,8 @@ ssize_t decode_hw_header (interface, buf, bufix, from)
        else
 #endif
 #if defined (DEC_FDDI)
-            if (interface -> hw_address.hbuf [i] == HTYPE_FDDI)
-                    return decode_tr_header (interface, buf, bufix, from);
+            if (interface -> hw_address.hbuf [0] == HTYPE_FDDI)
+                    return decode_fddi_header (interface, buf, bufix, from);
        else
 #endif
                return decode_ethernet_header (interface, buf, bufix, from);