diff options
author | djm@openbsd.org <djm@openbsd.org> | 2022-05-27 07:02:46 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2022-05-27 08:38:03 +0200 |
commit | c83d8c4d6f3ccceef84d46de107f6b71cda06359 (patch) | |
tree | 81872e6e3f2382f879831c09ae21e422ed41b900 /Makefile.in | |
parent | upstream: refactor authorized_keys/principals handling (diff) | |
download | openssh-c83d8c4d6f3ccceef84d46de107f6b71cda06359.tar.xz openssh-c83d8c4d6f3ccceef84d46de107f6b71cda06359.zip |
upstream: split the low-level file handling functions out from
auth2-pubkey.c
Put them in a new auth2-pubkeyfile.c to make it easier to refer to them
(e.g. in unit/fuzz tests) without having to refer to everything else
pubkey auth brings in.
ok dtucker@
OpenBSD-Commit-ID: 3fdca2c61ad97dc1b8d4a7346816f83dc4ce2217
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 7250d3f31..3c2856829 100644 --- a/Makefile.in +++ b/Makefile.in @@ -123,7 +123,7 @@ SSHDOBJS=sshd.o auth-rhosts.o auth-passwd.o \ auth.o auth2.o auth-options.o session.o \ auth2-chall.o groupaccess.o \ auth-bsdauth.o auth2-hostbased.o auth2-kbdint.o \ - auth2-none.o auth2-passwd.o auth2-pubkey.o \ + auth2-none.o auth2-passwd.o auth2-pubkey.o auth2-pubkeyfile.o \ monitor.o monitor_wrap.o auth-krb5.o \ auth2-gss.o gss-serv.o gss-serv-krb5.o \ loginrec.o auth-pam.o auth-shadow.o auth-sia.o \ |