Skip to content

Commit

Permalink
wincng.h: fixed invalid parameter name
Browse files Browse the repository at this point in the history
  • Loading branch information
mback2k committed Mar 22, 2015
1 parent aa4e649 commit 3fc17cd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/wincng.h
Original file line number Diff line number Diff line change
Expand Up @@ -211,11 +211,11 @@ typedef struct __libssh2_wincng_key_ctx {
g, g_len, y, y_len, x, x_len) \
_libssh2_wincng_dsa_new(dsactx, p, p_len, q, q_len, \
g, g_len, y, y_len, x, x_len)
#define _libssh2_dsa_new_private(rsactx, s, filename, passphrase) \
_libssh2_wincng_dsa_new_private(rsactx, s, filename, passphrase)
#define _libssh2_dsa_new_private_frommemory(rsactx, s, filedata, \
#define _libssh2_dsa_new_private(dsactx, s, filename, passphrase) \
_libssh2_wincng_dsa_new_private(dsactx, s, filename, passphrase)
#define _libssh2_dsa_new_private_frommemory(dsactx, s, filedata, \
filedata_len, passphrase) \
_libssh2_wincng_dsa_new_private_frommemory(rsactx, s, filedata, \
_libssh2_wincng_dsa_new_private_frommemory(dsactx, s, filedata, \
filedata_len, passphrase)
#define _libssh2_dsa_sha1_sign(dsactx, hash, hash_len, sig) \
_libssh2_wincng_dsa_sha1_sign(dsactx, hash, hash_len, sig)
Expand Down

0 comments on commit 3fc17cd

Please sign in to comment.