diff options
| author | Jordan K. Hubbard <jkh@FreeBSD.org> | 1997-01-15 03:24:44 +0000 |
|---|---|---|
| committer | Jordan K. Hubbard <jkh@FreeBSD.org> | 1997-01-15 03:24:44 +0000 |
| commit | 9e5c9c0856de81638d4071b6fba94de60ee18dd0 (patch) | |
| tree | a5e5a2bba9aaf35574908d1b6de65621fc17d1c0 /release | |
| parent | 91188fac62be97a7d70c38a4208f5d9260d69681 (diff) | |
Notes
Diffstat (limited to 'release')
| -rw-r--r-- | release/sysinstall/tcpip.c | 32 |
1 files changed, 13 insertions, 19 deletions
diff --git a/release/sysinstall/tcpip.c b/release/sysinstall/tcpip.c index d9159b6cd2d4..e807002b9258 100644 --- a/release/sysinstall/tcpip.c +++ b/release/sysinstall/tcpip.c @@ -238,27 +238,21 @@ tcpOpenDialog(Device *devp) reenter: cancelbutton = okbutton = 0; while (layoutDialogLoop(ds_win, layout, &obj, &n, max, &cancelbutton, &cancel)) { - if (n == LAYOUT_IPADDR) { - /* Insert a default value for the netmask, 0xffffff00 is - the most appropriate one (entire class C, or subnetted - class A/B network). */ - if (netmask[0] == '\0') { - strcpy(netmask, "255.255.255.0"); - RefreshStringObj(layout[LAYOUT_NETMASK].obj); - } + /* Insert a default value for the netmask, 0xffffff00 is + the most appropriate one (entire class C, or subnetted + class A/B network). */ + if (netmask[0] == '\0') { + strcpy(netmask, "255.255.255.0"); + RefreshStringObj(layout[LAYOUT_NETMASK].obj); } - else if (n == LAYOUT_DOMAINNAME) { - if (!index(hostname, '.') && domainname[0]) { - strcat(hostname, "."); - strcat(hostname, domainname); - RefreshStringObj(layout[LAYOUT_HOSTNAME].obj); - } + if (!index(hostname, '.') && domainname[0]) { + strcat(hostname, "."); + strcat(hostname, domainname); + RefreshStringObj(layout[LAYOUT_HOSTNAME].obj); } - else if (n == LAYOUT_HOSTNAME) { - if (((tmp = index(hostname, '.')) != NULL) && !domainname[0]) { - SAFE_STRCPY(domainname, tmp + 1); - RefreshStringObj(layout[LAYOUT_DOMAINNAME].obj); - } + else if (((tmp = index(hostname, '.')) != NULL) && !domainname[0]) { + SAFE_STRCPY(domainname, tmp + 1); + RefreshStringObj(layout[LAYOUT_DOMAINNAME].obj); } } |
