Convert #ifdef to #if, other build changes

This commit is contained in:
Matt Johnston
2016-05-04 15:33:40 +02:00
parent d6daad29fc
commit 32a28d0d9c
72 changed files with 876 additions and 914 deletions

4
dss.h
View File

@@ -28,7 +28,7 @@
#include "includes.h"
#include "buffer.h"
#ifdef DROPBEAR_DSS
#if DROPBEAR_DSS
typedef struct {
@@ -42,7 +42,7 @@ typedef struct {
} dropbear_dss_key;
void buf_put_dss_sign(buffer* buf, dropbear_dss_key *key, buffer *data_buf);
#ifdef DROPBEAR_SIGNKEY_VERIFY
#if DROPBEAR_SIGNKEY_VERIFY
int buf_dss_verify(buffer* buf, dropbear_dss_key *key, buffer *data_buf);
#endif
int buf_get_dss_pub_key(buffer* buf, dropbear_dss_key *key);