This commit is contained in:
Astro 2022-09-20 00:09:00 +02:00
parent 84039de0fa
commit 91d2eb3b51
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ impl server::Handler for Handler {
}
fn auth_password(mut self, user: &str, password: &str) -> Self::FutureAuth {
writeln!(self.file, "Authenticaed as {} with {}\n", user, password)
writeln!(self.file, "Authenticated as {} with {}\n", user, password)
.unwrap();
self.user = user.into();
self.finished_auth(server::Auth::Accept)