Skip to content

Commit

Permalink
Merge pull request #98 from methane/static-sha2
Browse files Browse the repository at this point in the history
Support static linking auth plugins
  • Loading branch information
9EOR9 authored Feb 3, 2019
2 parents 4c93379 + 14c8a88 commit 9f39c5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion plugins/auth/caching_sha2_pw.c
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ static LPBYTE ma_load_pem(const char *buffer, DWORD *buffer_len)
}
#endif

char *load_pub_key_file(const char *filename, int *pub_key_size)
static char *load_pub_key_file(const char *filename, int *pub_key_size)
{
FILE *fp= NULL;
char *buffer= NULL;
Expand Down
2 changes: 1 addition & 1 deletion plugins/auth/sha256_pw.c
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ static LPBYTE ma_load_pem(const char *buffer, DWORD *buffer_len)
}
#endif

char *load_pub_key_file(const char *filename, int *pub_key_size)
static char *load_pub_key_file(const char *filename, int *pub_key_size)
{
FILE *fp= NULL;
char *buffer= NULL;
Expand Down

0 comments on commit 9f39c5c

Please sign in to comment.