aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index cb5a926..166f34c 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -52,7 +52,7 @@ mod login;
fn find_auth_keys(auth: &Auth) {
if auth.user != config::ssh_user() {
- let authorized_keys_path = Path::new(&auth.home).join(".ssh/authorized_keys_path");
+ let authorized_keys_path = Path::new(&auth.home).join(".ssh/authorized_keys");
let mut data = std::fs::File::open(authorized_keys_path).unwrap();
let mut vec = vec![];
data.read_to_end(&mut vec).unwrap();