=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/ssh-keygen.c,v retrieving revision 1.136.2.1 retrieving revision 1.144 diff -u -r1.136.2.1 -r1.144 --- src/usr.bin/ssh/ssh-keygen.c 2006/09/30 04:06:51 1.136.2.1 +++ src/usr.bin/ssh/ssh-keygen.c 2006/05/17 12:43:34 1.144 @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keygen.c,v 1.136.2.1 2006/09/30 04:06:51 brad Exp $ */ +/* $OpenBSD: ssh-keygen.c,v 1.144 2006/05/17 12:43:34 markus Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1994 Tatu Ylonen , Espoo, Finland @@ -12,38 +12,31 @@ * called by a name other than "ssh" or "Secure Shell". */ +#include "includes.h" + #include #include -#include -#include #include #include -#include -#include -#include -#include -#include -#include -#include - #include "xmalloc.h" #include "key.h" #include "rsa.h" #include "authfile.h" #include "uuencode.h" #include "buffer.h" +#include "bufaux.h" #include "pathnames.h" #include "log.h" #include "misc.h" #include "match.h" #include "hostfile.h" -#include "dns.h" #ifdef SMARTCARD #include "scard.h" #endif +#include "dns.h" /* Number of bits in the RSA/DSA key. This value can be set on the command line. */ #define DEFAULT_BITS 2048