small bug fix; set Gateway to Gateway instead of Netmask to Gateway

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@40513 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Alexander von Gluck IV 2011-02-15 17:31:19 +00:00
parent 007d8a0cea
commit 415bb095f3

View File

@ -67,7 +67,7 @@ InterfaceAddressView::RevertFields()
// Populate address fields with current settings
fAddressField->SetText(fSettings->IP(fFamily));
fNetmaskField->SetText(fSettings->Netmask(fFamily));
fNetmaskField->SetText(fSettings->Gateway(fFamily));
fGatewayField->SetText(fSettings->Gateway(fFamily));
return B_OK;
}