chiark / gitweb /
udev: net_id - use constants rather than magic numbers
authorTom Gundersen <teg@jklm.no>
Sun, 6 Apr 2014 16:00:26 +0000 (18:00 +0200)
committerTom Gundersen <teg@jklm.no>
Sun, 6 Apr 2014 16:00:40 +0000 (18:00 +0200)
src/udev/udev-builtin-net_id.c

index aa08196adb3055e306ac4888c999c521d7c8277a..c80c30ac77328c0fedfd8d653415e17d3b677148 100644 (file)
@@ -94,6 +94,7 @@
 #include <string.h>
 #include <errno.h>
 #include <net/if.h>
 #include <string.h>
 #include <errno.h>
 #include <net/if.h>
+#include <net/if_arp.h>
 #include <linux/pci_regs.h>
 
 #include "udev.h"
 #include <linux/pci_regs.h>
 
 #include "udev.h"
@@ -451,10 +452,10 @@ static int builtin_net_id(struct udev_device *dev, int argc, char *argv[], bool
                 return EXIT_FAILURE;
         i = strtoul(s, NULL, 0);
         switch (i) {
                 return EXIT_FAILURE;
         i = strtoul(s, NULL, 0);
         switch (i) {
-        case 1: /* ARPHRD_ETHER */
+        case ARPHRD_ETHER:
                 prefix = "en";
                 break;
                 prefix = "en";
                 break;
-        case 256: /* ARPHRD_SLIP */
+        case ARPHRD_SLIP:
                 prefix = "sl";
                 break;
         default:
                 prefix = "sl";
                 break;
         default: