Skip to content

Commit 3bc857c

Browse files
committed
Function prototype to support 64-bit
Missing a prototype can cause a problem if we are 64-bit and the function is returning a pointer. Add a prototype to stop the return value from being corrupted.
1 parent 3bbefb6 commit 3bc857c

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

auth2-pubkey.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,8 @@ extern u_int session_id2_len;
8686
#ifdef WIN32_FIXME
8787

8888
extern char HomeDirLsaW[MAX_PATH];
89-
89+
wchar_t *GetHomeDir(char *userName);
90+
9091
#endif
9192

9293

0 commit comments

Comments
 (0)