aboutsummaryrefslogtreecommitdiffstats
path: root/mumd
diff options
context:
space:
mode:
Diffstat (limited to 'mumd')
-rw-r--r--mumd/src/state.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mumd/src/state.rs b/mumd/src/state.rs
index 4182b6c..2ad88ad 100644
--- a/mumd/src/state.rs
+++ b/mumd/src/state.rs
@@ -87,7 +87,7 @@ impl State {
}
let mut server = Server::new();
server.username = Some(username);
- server.host = Some(host.clone());
+ server.host = Some(format!("{}:{}", host, port));
self.server = Some(server);
self.phase_watcher
.0