fixed typo

connection_type_change
nathan 2020-08-18 22:35:27 +02:00
parent da9b897f39
commit e98cdd2705
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ object VirtualEth {
fun assignNameSpace(nameSpace: String, guest: String) {
if (Common.OS_LINUX) {
Executor().command("/sbin/ip", "link", "set", "guest", "netns", nameSpace).startBlocking()
Executor().command("/sbin/ip", "link", "set", guest, "netns", nameSpace).startBlocking()
} else {
throw RuntimeException("NOT IMPL.")
}