From 634af5665fda8776d22624d947c8de830e30a874 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Thu, 17 Jul 2014 01:48:40 +0200 Subject: sd-login: always use "indices" as plural of "index" So far both "indexes" and "indices" was used. Let's clean this up, and stick to indices, since it appears to be used more frequently. --- src/libsystemd/sd-login/sd-login.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/libsystemd/sd-login') diff --git a/src/libsystemd/sd-login/sd-login.c b/src/libsystemd/sd-login/sd-login.c index 83d6449241..38ff944892 100644 --- a/src/libsystemd/sd-login/sd-login.c +++ b/src/libsystemd/sd-login/sd-login.c @@ -786,7 +786,7 @@ _public_ int sd_machine_get_class(const char *machine, char **class) { return 0; } -_public_ int sd_machine_get_ifindexes(const char *machine, int **ifindexes) { +_public_ int sd_machine_get_ifindices(const char *machine, int **ifindices) { _cleanup_free_ char *netif = NULL; size_t l, allocated = 0, nr = 0; char *w, *state; @@ -795,14 +795,14 @@ _public_ int sd_machine_get_ifindexes(const char *machine, int **ifindexes) { int r; assert_return(machine_name_is_valid(machine), -EINVAL); - assert_return(ifindexes, -EINVAL); + assert_return(ifindices, -EINVAL); p = strappenda("/run/systemd/machines/", machine); r = parse_env_file(p, NEWLINE, "NETIF", &netif, NULL); if (r < 0) return r; if (!netif) { - *ifindexes = NULL; + *ifindices = NULL; return 0; } @@ -825,7 +825,7 @@ _public_ int sd_machine_get_ifindexes(const char *machine, int **ifindexes) { ni[nr++] = ifi; } - *ifindexes = ni; + *ifindices = ni; return nr; } -- cgit v1.2.3-54-g00ecf