diff options
author | Andreas Schneider <asn@cryptomilk.org> | 2011-09-17 11:09:19 +0200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2011-09-17 11:09:19 +0200 |
commit | fa7798833ad9b0edb296a632c07ce942861c8993 (patch) | |
tree | 46f96ec960944a280bd40bc9c0c94bc2f4aae550 /include/libssh/pki_priv.h | |
parent | b96943e86142774871107a4f814573998e2c8048 (diff) | |
download | libssh-fa7798833ad9b0edb296a632c07ce942861c8993.tar.gz libssh-fa7798833ad9b0edb296a632c07ce942861c8993.tar.xz libssh-fa7798833ad9b0edb296a632c07ce942861c8993.zip |
pki: Use ssh_log_function() for ssh_pki_log().
Diffstat (limited to 'include/libssh/pki_priv.h')
-rw-r--r-- | include/libssh/pki_priv.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/libssh/pki_priv.h b/include/libssh/pki_priv.h index d1ffa8a..8e9347f 100644 --- a/include/libssh/pki_priv.h +++ b/include/libssh/pki_priv.h @@ -27,7 +27,10 @@ #define DSA_HEADER_BEGIN "-----BEGIN DSA PRIVATE KEY-----" #define DSA_HEADER_END "-----END DSA PRIVATE KEY-----" -void ssh_pki_log(const char *format, ...) PRINTF_ATTRIBUTE(1, 2); +#define ssh_pki_log(...) \ + _ssh_pki_log(__FUNCTION__, __VA_ARGS__) +void _ssh_pki_log(const char *function, + const char *format, ...) PRINTF_ATTRIBUTE(2, 3); /* SSH Key Functions */ ssh_key pki_key_dup(const ssh_key key, int demote); |