aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
diff options
context:
space:
mode:
authorLinnea Gräf <nea@nea.moe>2024-08-28 16:34:38 +0200
committerLinnea Gräf <nea@nea.moe>2024-08-28 16:34:38 +0200
commitaa5c8ee5a49000d8e0f10ce1c5c1d5a57ae88e25 (patch)
tree9525ded08e2ea48b2c50127208f99327cc9883ea /src/main.rs
parente4b9a9b40838777d4d017001fef00e1c57efbb0c (diff)
downloadfagit-aa5c8ee5a49000d8e0f10ce1c5c1d5a57ae88e25.tar.gz
fagit-aa5c8ee5a49000d8e0f10ce1c5c1d5a57ae88e25.tar.bz2
fagit-aa5c8ee5a49000d8e0f10ce1c5c1d5a57ae88e25.zip
Add initial stuff for the configHEADmaster
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();