diff options
author | Colin Watson <cjwatson@debian.org> | 2009-12-29 21:38:40 +0000 |
---|---|---|
committer | Colin Watson <cjwatson@debian.org> | 2009-12-29 21:38:40 +0000 |
commit | 1b816ea846aca3ee89e7995373ace609e9518424 (patch) | |
tree | b41cdc8495cae7fa9c2e0f98a5f2e71656b61f9a /cipher-bf1.c | |
parent | fa585019a79ebcb4e0202b1c33f87ff1c5c9ce1c (diff) | |
parent | 086ea76990b1e6287c24b6db74adffd4605eb3b0 (diff) |
import openssh-4.6p1-gsskex-20070312.patch
Diffstat (limited to 'cipher-bf1.c')
-rw-r--r-- | cipher-bf1.c | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/cipher-bf1.c b/cipher-bf1.c index 5af695c17..292488c5c 100644 --- a/cipher-bf1.c +++ b/cipher-bf1.c | |||
@@ -1,3 +1,4 @@ | |||
1 | /* $OpenBSD: cipher-bf1.c,v 1.5 2006/08/03 03:34:42 deraadt Exp $ */ | ||
1 | /* | 2 | /* |
2 | * Copyright (c) 2003 Markus Friedl. All rights reserved. | 3 | * Copyright (c) 2003 Markus Friedl. All rights reserved. |
3 | * | 4 | * |
@@ -23,9 +24,14 @@ | |||
23 | */ | 24 | */ |
24 | 25 | ||
25 | #include "includes.h" | 26 | #include "includes.h" |
26 | RCSID("$OpenBSD: cipher-bf1.c,v 1.1 2003/05/15 03:08:29 markus Exp $"); | 27 | |
28 | #include <sys/types.h> | ||
27 | 29 | ||
28 | #include <openssl/evp.h> | 30 | #include <openssl/evp.h> |
31 | |||
32 | #include <stdarg.h> | ||
33 | #include <string.h> | ||
34 | |||
29 | #include "xmalloc.h" | 35 | #include "xmalloc.h" |
30 | #include "log.h" | 36 | #include "log.h" |
31 | 37 | ||