mirror of
https://github.com/systemd/systemd.git
synced 2024-11-06 16:59:03 +03:00
udev: net_id - use constants rather than magic numbers
This commit is contained in:
parent
609211792b
commit
19aa72f74e
@ -94,6 +94,7 @@
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
#include <net/if.h>
|
||||
#include <net/if_arp.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) {
|
||||
case 1: /* ARPHRD_ETHER */
|
||||
case ARPHRD_ETHER:
|
||||
prefix = "en";
|
||||
break;
|
||||
case 256: /* ARPHRD_SLIP */
|
||||
case ARPHRD_SLIP:
|
||||
prefix = "sl";
|
||||
break;
|
||||
default:
|
||||
|
Loading…
Reference in New Issue
Block a user