diff options
author | Felix Fietkau <nbd@openwrt.org> | 2011-07-29 19:27:34 +0200 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2011-07-29 19:27:34 +0200 |
commit | a7d77cbb91d64cbd36808f09e93e21a866844fd4 (patch) | |
tree | 0e136fe44e3f5cecd596e019b46400cc2e390de6 /interface.c | |
parent | b567e47574a6f4179bdce88e65aaabb1a97cfb76 (diff) |
s/get_interface/interface_get/
Diffstat (limited to 'interface.c')
-rw-r--r-- | interface.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/interface.c b/interface.c index 5cefd4c..a2527ca 100644 --- a/interface.c +++ b/interface.c @@ -210,7 +210,7 @@ alloc_interface(const char *name, struct uci_section *s, struct blob_attr *attr) struct blob_attr *cur; struct device *dev; - iface = get_interface(name); + iface = interface_get(name); if (iface) return iface; @@ -255,7 +255,7 @@ free_interface(struct interface *iface) } struct interface * -get_interface(const char *name) +interface_get(const char *name) { struct interface *iface; |