1
0
mirror of https://git.libssh.org/projects/libssh.git synced 2025-11-29 01:03:57 +03:00

pki: Fix build warnings.

This commit is contained in:
Andreas Schneider
2011-08-20 11:07:54 +02:00
parent bb509ce4f7
commit 743a00dad4
2 changed files with 2 additions and 1 deletions

View File

@@ -46,7 +46,7 @@ struct ssh_key_struct {
void *cert;
};
void ssh_pki_log(const char *format, ...);
void ssh_pki_log(const char *format, ...) PRINTF_ATTRIBUTE(1, 2);
/* internal pki functions */
ssh_key pki_key_dup(const ssh_key key, int demote);

View File

@@ -22,6 +22,7 @@
#include "config.h"
#include "libssh/session.h"
#include "libssh/ecdh.h"
#include "libssh/dh.h"
#include "libssh/buffer.h"
#include "libssh/ssh2.h"