diff options
-rw-r--r-- | Makefile.in | 4 | ||||
-rw-r--r-- | misc.c | 1 |
2 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index ac3907b1e..632975b1a 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -92,13 +92,13 @@ LIBSSH_OBJS=${LIBOPENSSH_OBJS} \ | |||
92 | kex.o kexdh.o kexgex.o kexecdh.o kexc25519.o \ | 92 | kex.o kexdh.o kexgex.o kexecdh.o kexc25519.o \ |
93 | kexdhc.o kexgexc.o kexecdhc.o kexc25519c.o \ | 93 | kexdhc.o kexgexc.o kexecdhc.o kexc25519c.o \ |
94 | kexdhs.o kexgexs.o kexecdhs.o kexc25519s.o \ | 94 | kexdhs.o kexgexs.o kexecdhs.o kexc25519s.o \ |
95 | platform-pledge.o platform-tracing.o | 95 | platform-pledge.o platform-tracing.o platform.o |
96 | 96 | ||
97 | SSHOBJS= ssh.o readconf.o clientloop.o sshtty.o \ | 97 | SSHOBJS= ssh.o readconf.o clientloop.o sshtty.o \ |
98 | sshconnect.o sshconnect2.o mux.o | 98 | sshconnect.o sshconnect2.o mux.o |
99 | 99 | ||
100 | SSHDOBJS=sshd.o auth-rhosts.o auth-passwd.o \ | 100 | SSHDOBJS=sshd.o auth-rhosts.o auth-passwd.o \ |
101 | audit.o audit-bsm.o audit-linux.o platform.o \ | 101 | audit.o audit-bsm.o audit-linux.o \ |
102 | sshpty.o sshlogin.o servconf.o serverloop.o \ | 102 | sshpty.o sshlogin.o servconf.o serverloop.o \ |
103 | auth.o auth2.o auth-options.o session.o \ | 103 | auth.o auth2.o auth-options.o session.o \ |
104 | auth2-chall.o groupaccess.o \ | 104 | auth2-chall.o groupaccess.o \ |
@@ -70,6 +70,7 @@ | |||
70 | #include "sshbuf.h" | 70 | #include "sshbuf.h" |
71 | #include "ssherr.h" | 71 | #include "ssherr.h" |
72 | #include "uidswap.h" | 72 | #include "uidswap.h" |
73 | #include "platform.h" | ||
73 | 74 | ||
74 | /* remove newline at end of string */ | 75 | /* remove newline at end of string */ |
75 | char * | 76 | char * |