diff options
author | Damien Miller <djm@mindrot.org> | 2010-08-31 14:50:48 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2010-08-31 14:50:48 +0200 |
commit | c79ff0770e0ac1e0d9acc2741190cf7599bb6bd8 (patch) | |
tree | f13097c15373de13c45be983468404a6b6b53610 | |
parent | - (djm) [Makefile.in] Add new ECC files (diff) | |
download | openssh-c79ff0770e0ac1e0d9acc2741190cf7599bb6bd8.tar.xz openssh-c79ff0770e0ac1e0d9acc2741190cf7599bb6bd8.zip |
- (djm) [bufec.c kexecdh.c kexecdhc.c kexecdhs.c ssh-ecdsa.c] include
includes.h
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | bufec.c | 3 | ||||
-rw-r--r-- | kexecdh.c | 2 | ||||
-rw-r--r-- | kexecdhc.c | 2 | ||||
-rw-r--r-- | kexecdhs.c | 2 | ||||
-rw-r--r-- | ssh-ecdsa.c | 2 |
6 files changed, 13 insertions, 0 deletions
@@ -49,6 +49,8 @@ feedback and ok markus@ - (djm) [Makefile.in] Add new ECC files + - (djm) [bufec.c kexecdh.c kexecdhc.c kexecdhs.c ssh-ecdsa.c] include + includes.h 20100827 - (dtucker) [contrib/redhat/sshd.init] Bug #1810: initlog is deprecated, @@ -14,6 +14,9 @@ * 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 <sys/types.h> #include <openssl/bn.h> @@ -24,6 +24,8 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include "includes.h" + #include <sys/types.h> #include <signal.h> diff --git a/kexecdhc.c b/kexecdhc.c index f6d9977c5..7ac7b1ee2 100644 --- a/kexecdhc.c +++ b/kexecdhc.c @@ -24,6 +24,8 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include "includes.h" + #include <sys/types.h> #include <stdio.h> diff --git a/kexecdhs.c b/kexecdhs.c index d73333893..e49a0ef37 100644 --- a/kexecdhs.c +++ b/kexecdhs.c @@ -24,6 +24,8 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include "includes.h" + #include <sys/types.h> #include <string.h> #include <signal.h> diff --git a/ssh-ecdsa.c b/ssh-ecdsa.c index a1c1bdb60..3069ca5bc 100644 --- a/ssh-ecdsa.c +++ b/ssh-ecdsa.c @@ -24,6 +24,8 @@ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ +#include "includes.h" + #include <sys/types.h> #include <openssl/bn.h> |