=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/ssh/Attic/cipher-ctr.c,v retrieving revision 1.6.4.1 retrieving revision 1.7 diff -u -r1.6.4.1 -r1.7 --- src/usr.bin/ssh/Attic/cipher-ctr.c 2006/09/30 04:06:50 1.6.4.1 +++ src/usr.bin/ssh/Attic/cipher-ctr.c 2006/03/19 18:51:18 1.7 @@ -1,4 +1,3 @@ -/* $OpenBSD: cipher-ctr.c,v 1.6.4.1 2006/09/30 04:06:50 brad Exp $ */ /* * Copyright (c) 2003 Markus Friedl * @@ -14,16 +13,13 @@ * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. */ +#include "includes.h" -#include - -#include - #include #include -#include "xmalloc.h" #include "log.h" +#include "xmalloc.h" const EVP_CIPHER *evp_aes_128_ctr(void); void ssh_aes_ctr_iv(EVP_CIPHER_CTX *, int, u_char *, u_int);