minor updates

This commit is contained in:
chris hellberg 2021-12-30 21:24:25 -05:00
parent a2d65f6ec4
commit 9d86d0afdc
2 changed files with 2 additions and 2 deletions

View File

@ -2693,8 +2693,8 @@ main(int argc, char **argv)
}
if (!skipipconfig) {
const char *other_ip = users_get_first_ip();
if (tun_setip(argv[0], other_ip, netmask, forward_v6) || tun_setmtu(mtu) != 0) {
retval = 1;
if (tun_setip(argv[0], other_ip, netmask, forward_v6) != 0 || tun_setmtu(mtu) != 0) {
retval = 1;
free((void*) other_ip);
goto cleanup;

View File