changed variable name is not correct. It does not say that network interface changed its address. It just says that the netlink message processing was triggered. Signed-off-by: Stanislav Brabec <sbrabec@xxxxxxx> --- term-utils/agetty.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/term-utils/agetty.c b/term-utils/agetty.c index 844220401..2f27d7f71 100644 --- a/term-utils/agetty.c +++ b/term-utils/agetty.c @@ -1554,7 +1554,7 @@ static void open_netlink(void) } } -static int process_netlink_msg(int *changed) +static int process_netlink_msg(int *triggered) { char buf[4096]; struct sockaddr_nl snl; @@ -1594,7 +1594,7 @@ static int process_netlink_msg(int *changed) return 0; } - *changed = 1; + *triggered = 1; break; } @@ -1603,9 +1603,9 @@ static int process_netlink_msg(int *changed) static int process_netlink(void) { - int changed = 0; - while (process_netlink_msg(&changed)); - return changed; + int triggered = 0; + while (process_netlink_msg(&triggered)); + return triggered; } static int wait_for_term_input(int fd) -- 2.19.0 -- Best Regards / S pozdravem, Stanislav Brabec software developer --------------------------------------------------------------------- SUSE LINUX, s. r. o. e-mail: sbrabec@xxxxxxxx Křižíkova 148/34 (Corso IIa) tel: +49 911 7405384547 186 00 Praha 8-Karlín fax: +420 284 084 001 Czech Republic http://www.suse.cz/ PGP: 830B 40D5 9E05 35D8 5E27 6FA3 717C 209F A04F CD76