diff options
author | 2001-01-19 15:55:10 +0000 | |
---|---|---|
committer | 2001-01-19 15:55:10 +0000 | |
commit | e810d18bdfa95d8f53b6d93b96ecc03eefc7550b (patch) | |
tree | 6a18b679fd9e18b99b22b7d8e1f905509c1b1351 /usr.bin/ssh/ssh-keyscan.c | |
parent | Again, increase the size. (diff) | |
download | wireguard-openbsd-e810d18bdfa95d8f53b6d93b96ecc03eefc7550b.tar.xz wireguard-openbsd-e810d18bdfa95d8f53b6d93b96ecc03eefc7550b.zip |
move ssh1 definitions to ssh1.h, pathnames to pathnames.h
Diffstat (limited to 'usr.bin/ssh/ssh-keyscan.c')
-rw-r--r-- | usr.bin/ssh/ssh-keyscan.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/ssh-keyscan.c b/usr.bin/ssh/ssh-keyscan.c index 068ffca01a2..e6d2bbb0f12 100644 --- a/usr.bin/ssh/ssh-keyscan.c +++ b/usr.bin/ssh/ssh-keyscan.c @@ -8,7 +8,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: ssh-keyscan.c,v 1.9 2001/01/13 18:12:47 markus Exp $"); +RCSID("$OpenBSD: ssh-keyscan.c,v 1.10 2001/01/19 15:55:11 markus Exp $"); #include <sys/queue.h> #include <errno.h> @@ -19,6 +19,7 @@ RCSID("$OpenBSD: ssh-keyscan.c,v 1.9 2001/01/13 18:12:47 markus Exp $"); #include "xmalloc.h" #include "ssh.h" +#include "ssh1.h" #include "key.h" #include "buffer.h" #include "bufaux.h" |