This commit is contained in:
realaltffour 2020-09-10 06:19:42 +03:00
parent 99c324bcf9
commit 69716a09f7
No known key found for this signature in database
GPG Key ID: C1265D839D44DCB1
1 changed files with 1 additions and 1 deletions

View File

@ -22,6 +22,6 @@ pub fn register(tls_connection: &mut TlsConnection, message: &Message) {
let message = message_builder(MessageType::ServerReturn, 1, 0, 0, 0, Vec::new());
let _ = tls_connection.write(&bincode::serialize(&message).unwrap());
},
Err(err) => warn!("REGISTER_FAILED: " /*{}", err*/) // TODO: OUTPUT ERRORS
Err(_) => warn!("REGISTER_FAILED: " /*{}", err*/) // TODO: OUTPUT ERRORS
};
}