[PATCH] treewide: Fix typo in ARPHRD_PHONET_PIPE
Denis Kenzior <[email protected]>
| Newsgroups | dev.linux.lists.connman |
|---|---|
| Message-ID | <[email protected]> |
This was spelled as 'ARPHDR', but should be 'ARPHRD'
---
src/rtnl.c | 8 ++++----
vpn/vpn-rtnl.c | 6 +++---
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/rtnl.c b/src/rtnl.c
index 64ba6086404e..d49ea4d445f4 100644
--- a/src/rtnl.c
+++ b/src/rtnl.c
@@ -42,8 +42,8 @@
#include "connman.h"
-#ifndef ARPHDR_PHONET_PIPE
-#define ARPHDR_PHONET_PIPE (821)
+#ifndef ARPHRD_PHONET_PIPE
+#define ARPHRD_PHONET_PIPE (821)
#endif
#define print(arg...) do { if (0) connman_info(arg); } while (0)
@@ -448,7 +448,7 @@ static void process_newlink(unsigned short type, int index, unsigned flags,
switch (type) {
case ARPHRD_ETHER:
case ARPHRD_LOOPBACK:
- case ARPHDR_PHONET_PIPE:
+ case ARPHRD_PHONET_PIPE:
case ARPHRD_PPP:
case ARPHRD_NONE:
__connman_ipconfig_newlink(index, type, flags,
@@ -536,7 +536,7 @@ static void process_dellink(unsigned short type, int index, unsigned flags,
switch (type) {
case ARPHRD_ETHER:
case ARPHRD_LOOPBACK:
- case ARPHDR_PHONET_PIPE:
+ case ARPHRD_PHONET_PIPE:
case ARPHRD_PPP:
case ARPHRD_NONE:
__connman_ipconfig_dellink(index, &stats);
diff --git a/vpn/vpn-rtnl.c b/vpn/vpn-rtnl.c
index a6b078586f25..b62e58a89d5d 100644
--- a/vpn/vpn-rtnl.c
+++ b/vpn/vpn-rtnl.c
@@ -46,8 +46,8 @@
#include "vpn-rtnl.h"
-#ifndef ARPHDR_PHONET_PIPE
-#define ARPHDR_PHONET_PIPE (821)
+#ifndef ARPHRD_PHONET_PIPE
+#define ARPHRD_PHONET_PIPE (821)
#endif
#define print(arg...) do { if (0) connman_info(arg); } while (0)
@@ -239,7 +239,7 @@ static void process_newlink(unsigned short type, int index, unsigned flags,
switch (type) {
case ARPHRD_ETHER:
case ARPHRD_LOOPBACK:
- case ARPHDR_PHONET_PIPE:
+ case ARPHRD_PHONET_PIPE:
case ARPHRD_NONE:
__vpn_ipconfig_newlink(index, type, flags,
str, mtu, &stats);
--
2.47.0