udhcpc6: downgrade "opening listen socket" log level to 2

This matches udhcpc for IPv4.

Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
This commit is contained in:
Denys Vlasenko
2022-08-02 18:04:51 +02:00
parent 75aaa8b311
commit 84b89b4c22
2 changed files with 2 additions and 2 deletions

View File

@@ -1083,7 +1083,7 @@ static void change_listen_mode(int new_mode)
client_data.sockfd = -1;
}
if (new_mode == LISTEN_KERNEL)
client_data.sockfd = d6_listen_socket(/*INADDR_ANY,*/ CLIENT_PORT6, client_data.interface);
client_data.sockfd = d6_listen_socket(CLIENT_PORT6, client_data.interface);
else if (new_mode != LISTEN_NONE)
client_data.sockfd = d6_raw_socket(client_data.ifindex);
/* else LISTEN_NONE: client_data.sockfd stays closed */